Chemical Data Processing Library Python API - Version 1.1.1
Public Member Functions | List of all members
CDPL.Math.DMatrixExpression Class Reference
+ Inheritance diagram for CDPL.Math.DMatrixExpression:

Public Member Functions

None swap (DMatrixExpression e)
 
DMatrixExpression assign (DMatrixExpression e)
 Replaces the current state of self with a copy of the state of the DMatrixExpression instance e. More...
 
DMatrixExpression assign (ConstFMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More...
 
DMatrixExpression assign (ConstDMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More...
 
DMatrixExpression assign (ConstLMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More...
 
DMatrixExpression assign (ConstULMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstULMatrixExpression instance e. More...
 
None assign (object a)
 Replaces the current state of self with a copy of the state of the object instance a. More...
 
None setElement (int i, int j, float v)
 
None __setitem__ (tuple ij, float v)
 
DMatrixExpression __iadd__ (DMatrixExpression e)
 Performs the in-place addition operation self += e. More...
 
DMatrixExpression __iadd__ (ConstDMatrixExpression e)
 Performs the in-place addition operation self += e. More...
 
DMatrixExpression __isub__ (DMatrixExpression e)
 Performs the in-place subtraction operation self -= e. More...
 
DMatrixExpression __isub__ (ConstDMatrixExpression e)
 Performs the in-place subtraction operation self -= e. More...
 
DMatrixExpression __imul__ (float t)
 Performs the in-place multiplication operation self *= t. More...
 
DMatrixExpression __idiv__ (float t)
 Performs the in-place division operation self /= t. More...
 
DMatrixExpression __itruediv__ (float t)
 
- Public Member Functions inherited from CDPL.Math.ConstDMatrixExpression
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
int getSize1 ()
 
int getSize2 ()
 
bool isEmpty ()
 
float getElement (int i, int j)
 
object toArray ()
 
float __call__ (int i, int j)
 
float __getitem__ (tuple ij)
 
int __len__ ()
 
bool __eq__ (ConstDMatrixExpression e)
 Returns the result of the comparison operation self == e. More...
 
bool __ne__ (ConstDMatrixExpression e)
 Returns the result of the comparison operation self != e. More...
 
str __str__ ()
 Returns a string representation of the ConstDMatrixExpression instance. More...
 
ConstDMatrixExpression __pos__ ()
 
ConstDMatrixExpression __neg__ ()
 
ConstDMatrixExpression __add__ (ConstDMatrixExpression e)
 Returns the result of the addition operation self + e. More...
 
ConstDMatrixExpression __sub__ (ConstDMatrixExpression e)
 Returns the result of the subtraction operation self - e. More...
 
ConstDMatrixExpression __mul__ (float t)
 Returns the result of the multiplication operation self * t. More...
 
ConstDMatrixExpression __mul__ (ConstDMatrixExpression e)
 Returns the result of the multiplication operation self * e. More...
 
ConstDVectorExpression __mul__ (ConstDVectorExpression e)
 Returns the result of the multiplication operation self * e. More...
 
ConstDMatrixExpression __div__ (float t)
 Returns the result of the division operation self / t. More...
 
ConstDMatrixExpression __truediv__ (float t)
 
ConstDMatrixExpression __rmul__ (float t)
 

Additional Inherited Members

- Properties inherited from CDPL.Math.ConstDMatrixExpression
 objectID = property(getObjectID)
 
 size1 = property(getSize1)
 
 size2 = property(getSize2)
 

Member Function Documentation

◆ swap()

None CDPL.Math.DMatrixExpression.swap ( DMatrixExpression  e)
Parameters
e

◆ assign() [1/6]

DMatrixExpression CDPL.Math.DMatrixExpression.assign ( DMatrixExpression  e)

Replaces the current state of self with a copy of the state of the DMatrixExpression instance e.

Parameters
eThe DMatrixExpression instance to copy.
Returns
self

◆ assign() [2/6]

DMatrixExpression CDPL.Math.DMatrixExpression.assign ( ConstFMatrixExpression  e)

Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e.

Parameters
eThe ConstFMatrixExpression instance to copy.
Returns
self

◆ assign() [3/6]

DMatrixExpression CDPL.Math.DMatrixExpression.assign ( ConstDMatrixExpression  e)

Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e.

Parameters
eThe ConstDMatrixExpression instance to copy.
Returns
self

◆ assign() [4/6]

DMatrixExpression CDPL.Math.DMatrixExpression.assign ( ConstLMatrixExpression  e)

Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e.

Parameters
eThe ConstLMatrixExpression instance to copy.
Returns
self

◆ assign() [5/6]

DMatrixExpression CDPL.Math.DMatrixExpression.assign ( ConstULMatrixExpression  e)

Replaces the current state of self with a copy of the state of the ConstULMatrixExpression instance e.

Parameters
eThe ConstULMatrixExpression instance to copy.
Returns
self

◆ assign() [6/6]

None CDPL.Math.DMatrixExpression.assign ( object  a)

Replaces the current state of self with a copy of the state of the object instance a.

Parameters
aThe object instance to copy.
Returns
self

◆ setElement()

None CDPL.Math.DMatrixExpression.setElement ( int  i,
int  j,
float  v 
)
Parameters
i
j
v

◆ __setitem__()

None CDPL.Math.DMatrixExpression.__setitem__ ( tuple  ij,
float  v 
)
Parameters
ij
v

◆ __iadd__() [1/2]

DMatrixExpression CDPL.Math.DMatrixExpression.__iadd__ ( DMatrixExpression  e)

Performs the in-place addition operation self += e.

Parameters
eSpecifies the second addend.
Returns
The updated DMatrixExpression instance self.

◆ __iadd__() [2/2]

DMatrixExpression CDPL.Math.DMatrixExpression.__iadd__ ( ConstDMatrixExpression  e)

Performs the in-place addition operation self += e.

Parameters
eSpecifies the second addend.
Returns
The updated DMatrixExpression instance self.

◆ __isub__() [1/2]

DMatrixExpression CDPL.Math.DMatrixExpression.__isub__ ( DMatrixExpression  e)

Performs the in-place subtraction operation self -= e.

Parameters
eSpecifies the subtrahend.
Returns
The updated DMatrixExpression instance self.

◆ __isub__() [2/2]

DMatrixExpression CDPL.Math.DMatrixExpression.__isub__ ( ConstDMatrixExpression  e)

Performs the in-place subtraction operation self -= e.

Parameters
eSpecifies the subtrahend.
Returns
The updated DMatrixExpression instance self.

◆ __imul__()

DMatrixExpression CDPL.Math.DMatrixExpression.__imul__ ( float  t)

Performs the in-place multiplication operation self *= t.

Parameters
tSpecifies the multiplier.
Returns
The updated DMatrixExpression instance self.

◆ __idiv__()

DMatrixExpression CDPL.Math.DMatrixExpression.__idiv__ ( float  t)

Performs the in-place division operation self /= t.

Parameters
tSpecifies the divisor.
Returns
The updated DMatrixExpression instance self.

◆ __itruediv__()

DMatrixExpression CDPL.Math.DMatrixExpression.__itruediv__ ( float  t)
Parameters
t
Returns