![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.LMatrixExpression:Public Member Functions | |
| None | swap (LMatrixExpression e) |
| LMatrixExpression | assign (LMatrixExpression e) |
Replaces the current state of self with a copy of the state of the LMatrixExpression instance e. More... | |
| LMatrixExpression | assign (ConstFMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More... | |
| LMatrixExpression | assign (ConstDMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More... | |
| LMatrixExpression | assign (ConstLMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More... | |
| LMatrixExpression | 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, int v) |
| None | __setitem__ (tuple ij, int v) |
| LMatrixExpression | __iadd__ (LMatrixExpression e) |
Performs the in-place addition operation self += e. More... | |
| LMatrixExpression | __iadd__ (ConstLMatrixExpression e) |
Performs the in-place addition operation self += e. More... | |
| LMatrixExpression | __isub__ (LMatrixExpression e) |
Performs the in-place subtraction operation self -= e. More... | |
| LMatrixExpression | __isub__ (ConstLMatrixExpression e) |
Performs the in-place subtraction operation self -= e. More... | |
| LMatrixExpression | __imul__ (int t) |
Performs the in-place multiplication operation self *= t. More... | |
| LMatrixExpression | __idiv__ (int t) |
Performs the in-place division operation self /= t. More... | |
| LMatrixExpression | __itruediv__ (int t) |
Public Member Functions inherited from CDPL.Math.ConstLMatrixExpression | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| int | getSize1 () |
| int | getSize2 () |
| bool | isEmpty () |
| int | getElement (int i, int j) |
| object | toArray () |
| int | __call__ (int i, int j) |
| int | __getitem__ (tuple ij) |
| int | __len__ () |
| bool | __eq__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self != e. More... | |
| str | __str__ () |
| Returns a string representation of the ConstLMatrixExpression instance. More... | |
| ConstLMatrixExpression | __pos__ () |
| ConstLMatrixExpression | __neg__ () |
| ConstLMatrixExpression | __add__ (ConstLMatrixExpression e) |
Returns the result of the addition operation self + e. More... | |
| ConstLMatrixExpression | __sub__ (ConstLMatrixExpression e) |
Returns the result of the subtraction operation self - e. More... | |
| ConstLMatrixExpression | __mul__ (int t) |
Returns the result of the multiplication operation self * t. More... | |
| ConstLMatrixExpression | __mul__ (ConstLMatrixExpression e) |
Returns the result of the multiplication operation self * e. More... | |
| ConstLVectorExpression | __mul__ (ConstLVectorExpression e) |
Returns the result of the multiplication operation self * e. More... | |
| ConstLMatrixExpression | __div__ (int t) |
Returns the result of the division operation self / t. More... | |
| ConstLMatrixExpression | __truediv__ (int t) |
| ConstLMatrixExpression | __rmul__ (int t) |
Additional Inherited Members | |
Properties inherited from CDPL.Math.ConstLMatrixExpression | |
| objectID = property(getObjectID) | |
| size1 = property(getSize1) | |
| size2 = property(getSize2) | |
| None CDPL.Math.LMatrixExpression.swap | ( | LMatrixExpression | e | ) |
| e |
| LMatrixExpression CDPL.Math.LMatrixExpression.assign | ( | LMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the LMatrixExpression instance e.
| e | The LMatrixExpression instance to copy. |
| LMatrixExpression CDPL.Math.LMatrixExpression.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. |
| LMatrixExpression CDPL.Math.LMatrixExpression.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. |
| LMatrixExpression CDPL.Math.LMatrixExpression.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. |
| LMatrixExpression CDPL.Math.LMatrixExpression.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.LMatrixExpression.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.LMatrixExpression.setElement | ( | int | i, |
| int | j, | ||
| int | v | ||
| ) |
| i | |
| j | |
| v |
| None CDPL.Math.LMatrixExpression.__setitem__ | ( | tuple | ij, |
| int | v | ||
| ) |
| ij | |
| v |
| LMatrixExpression CDPL.Math.LMatrixExpression.__iadd__ | ( | LMatrixExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
LMatrixExpression instance self. | LMatrixExpression CDPL.Math.LMatrixExpression.__iadd__ | ( | ConstLMatrixExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
LMatrixExpression instance self. | LMatrixExpression CDPL.Math.LMatrixExpression.__isub__ | ( | LMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
LMatrixExpression instance self. | LMatrixExpression CDPL.Math.LMatrixExpression.__isub__ | ( | ConstLMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
LMatrixExpression instance self. | LMatrixExpression CDPL.Math.LMatrixExpression.__imul__ | ( | int | t | ) |
Performs the in-place multiplication operation self *= t.
| t | Specifies the multiplier. |
LMatrixExpression instance self. | LMatrixExpression CDPL.Math.LMatrixExpression.__idiv__ | ( | int | t | ) |
Performs the in-place division operation self /= t.
| t | Specifies the divisor. |
LMatrixExpression instance self. | LMatrixExpression CDPL.Math.LMatrixExpression.__itruediv__ | ( | int | t | ) |
| t |