Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | swap (FMatrixExpression e) |
FMatrixExpression | assign (FMatrixExpression e) |
Replaces the current state of self with a copy of the state of the FMatrixExpression instance e. More... | |
FMatrixExpression | assign (ConstFMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More... | |
FMatrixExpression | assign (ConstDMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More... | |
FMatrixExpression | assign (ConstLMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More... | |
FMatrixExpression | 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) |
FMatrixExpression | __iadd__ (FMatrixExpression e) |
Performs the in-place addition operation self += e . More... | |
FMatrixExpression | __iadd__ (ConstFMatrixExpression e) |
Performs the in-place addition operation self += e . More... | |
FMatrixExpression | __isub__ (FMatrixExpression e) |
Performs the in-place subtraction operation self -= e . More... | |
FMatrixExpression | __isub__ (ConstFMatrixExpression e) |
Performs the in-place subtraction operation self -= e . More... | |
FMatrixExpression | __imul__ (float t) |
Performs the in-place multiplication operation self *= t . More... | |
FMatrixExpression | __idiv__ (float t) |
Performs the in-place division operation self /= t . More... | |
FMatrixExpression | __itruediv__ (float t) |
Public Member Functions inherited from CDPL.Math.ConstFMatrixExpression | |
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__ (ConstFMatrixExpression e) |
Returns the result of the comparison operation self == e . More... | |
bool | __ne__ (ConstFMatrixExpression e) |
Returns the result of the comparison operation self != e . More... | |
str | __str__ () |
Returns a string representation of the ConstFMatrixExpression instance. More... | |
ConstFMatrixExpression | __pos__ () |
ConstFMatrixExpression | __neg__ () |
ConstFMatrixExpression | __add__ (ConstFMatrixExpression e) |
Returns the result of the addition operation self + e . More... | |
ConstFMatrixExpression | __sub__ (ConstFMatrixExpression e) |
Returns the result of the subtraction operation self - e . More... | |
ConstFMatrixExpression | __mul__ (float t) |
Returns the result of the multiplication operation self * t . More... | |
ConstFMatrixExpression | __mul__ (ConstFMatrixExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstFVectorExpression | __mul__ (ConstFVectorExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstFMatrixExpression | __div__ (float t) |
Returns the result of the division operation self / t . More... | |
ConstFMatrixExpression | __truediv__ (float t) |
ConstFMatrixExpression | __rmul__ (float t) |
Additional Inherited Members | |
Properties inherited from CDPL.Math.ConstFMatrixExpression | |
objectID = property(getObjectID) | |
size1 = property(getSize1) | |
size2 = property(getSize2) | |
None CDPL.Math.FMatrixExpression.swap | ( | FMatrixExpression | e | ) |
e |
FMatrixExpression CDPL.Math.FMatrixExpression.assign | ( | FMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the FMatrixExpression instance e.
e | The FMatrixExpression instance to copy. |
FMatrixExpression CDPL.Math.FMatrixExpression.assign | ( | ConstFMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e.
e | The ConstFMatrixExpression instance to copy. |
FMatrixExpression CDPL.Math.FMatrixExpression.assign | ( | ConstDMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e.
e | The ConstDMatrixExpression instance to copy. |
FMatrixExpression CDPL.Math.FMatrixExpression.assign | ( | ConstLMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e.
e | The ConstLMatrixExpression instance to copy. |
FMatrixExpression CDPL.Math.FMatrixExpression.assign | ( | ConstULMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstULMatrixExpression instance e.
e | The ConstULMatrixExpression instance to copy. |
None CDPL.Math.FMatrixExpression.assign | ( | object | a | ) |
Replaces the current state of self with a copy of the state of the object instance a.
a | The object instance to copy. |
None CDPL.Math.FMatrixExpression.setElement | ( | int | i, |
int | j, | ||
float | v | ||
) |
i | |
j | |
v |
None CDPL.Math.FMatrixExpression.__setitem__ | ( | tuple | ij, |
float | v | ||
) |
ij | |
v |
FMatrixExpression CDPL.Math.FMatrixExpression.__iadd__ | ( | FMatrixExpression | e | ) |
Performs the in-place addition operation self += e
.
e | Specifies the second addend. |
FMatrixExpression CDPL.Math.FMatrixExpression.__iadd__ | ( | ConstFMatrixExpression | e | ) |
Performs the in-place addition operation self += e
.
e | Specifies the second addend. |
FMatrixExpression CDPL.Math.FMatrixExpression.__isub__ | ( | FMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e
.
e | Specifies the subtrahend. |
FMatrixExpression CDPL.Math.FMatrixExpression.__isub__ | ( | ConstFMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e
.
e | Specifies the subtrahend. |
FMatrixExpression CDPL.Math.FMatrixExpression.__imul__ | ( | float | t | ) |
Performs the in-place multiplication operation self *= t
.
t | Specifies the multiplier. |
FMatrixExpression CDPL.Math.FMatrixExpression.__idiv__ | ( | float | t | ) |
Performs the in-place division operation self /= t
.
t | Specifies the divisor. |
FMatrixExpression CDPL.Math.FMatrixExpression.__itruediv__ | ( | float | t | ) |
t |