![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
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) | |
| None CDPL.Math.DMatrixExpression.swap | ( | DMatrixExpression | e | ) |
| e |
| DMatrixExpression CDPL.Math.DMatrixExpression.assign | ( | DMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the DMatrixExpression instance e.
| e | The DMatrixExpression instance to copy. |
| DMatrixExpression CDPL.Math.DMatrixExpression.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. |
| DMatrixExpression CDPL.Math.DMatrixExpression.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. |
| DMatrixExpression CDPL.Math.DMatrixExpression.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. |
| DMatrixExpression CDPL.Math.DMatrixExpression.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.DMatrixExpression.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.DMatrixExpression.setElement | ( | int | i, |
| int | j, | ||
| float | v | ||
| ) |
| i | |
| j | |
| v |
| None CDPL.Math.DMatrixExpression.__setitem__ | ( | tuple | ij, |
| float | v | ||
| ) |
| ij | |
| v |
| DMatrixExpression CDPL.Math.DMatrixExpression.__iadd__ | ( | DMatrixExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
DMatrixExpression instance self. | DMatrixExpression CDPL.Math.DMatrixExpression.__iadd__ | ( | ConstDMatrixExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
DMatrixExpression instance self. | DMatrixExpression CDPL.Math.DMatrixExpression.__isub__ | ( | DMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
DMatrixExpression instance self. | DMatrixExpression CDPL.Math.DMatrixExpression.__isub__ | ( | ConstDMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
DMatrixExpression instance self. | DMatrixExpression CDPL.Math.DMatrixExpression.__imul__ | ( | float | t | ) |
Performs the in-place multiplication operation self *= t.
| t | Specifies the multiplier. |
DMatrixExpression instance self. | DMatrixExpression CDPL.Math.DMatrixExpression.__idiv__ | ( | float | t | ) |
Performs the in-place division operation self /= t.
| t | Specifies the divisor. |
DMatrixExpression instance self. | DMatrixExpression CDPL.Math.DMatrixExpression.__itruediv__ | ( | float | t | ) |
| t |