![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.LMatrixTranspose:Public Member Functions | |
| None | __init__ (LMatrixTranspose mt) |
| Initializes a copy of the LMatrixTranspose instance mt. More... | |
| None | __init__ (LMatrixExpression e) |
| Initializes the LMatrixTranspose instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| LMatrixTranspose | assign (ConstFMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More... | |
| LMatrixTranspose | assign (ConstDMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More... | |
| LMatrixTranspose | assign (ConstLMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More... | |
| LMatrixTranspose | assign (ConstULMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstULMatrixExpression instance e. More... | |
| LMatrixTranspose | assign (LMatrixTranspose mt) |
Replaces the current state of self with a copy of the state of the LMatrixTranspose instance mt. More... | |
| None | assign (object a) |
Replaces the current state of self with a copy of the state of the object instance a. More... | |
| int | getSize1 () |
| int | getSize2 () |
| bool | isEmpty () |
| int | getElement (int i, int j) |
| object | toArray () |
| None | swap (LMatrixTranspose mt) |
| None | setElement (int i, int j, int v) |
| LMatrixExpression | getData () |
| int | __call__ (int i, int j) |
| int | __getitem__ (tuple ij) |
| int | __len__ () |
| bool | __eq__ (LMatrixTranspose mt) |
Returns the result of the comparison operation self == mt. More... | |
| bool | __eq__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (LMatrixTranspose mt) |
Returns the result of the comparison operation self != mt. More... | |
| bool | __ne__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self != e. More... | |
| str | __str__ () |
| Returns a string representation of the LMatrixTranspose instance. More... | |
| LMatrixTranspose | __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) |
| None | __setitem__ (tuple ij, int v) |
| LMatrixTranspose | __iadd__ (LMatrixTranspose mt) |
Performs the in-place addition operation self += mt. More... | |
| LMatrixTranspose | __iadd__ (ConstLMatrixExpression e) |
Performs the in-place addition operation self += e. More... | |
| LMatrixTranspose | __isub__ (LMatrixTranspose mt) |
Performs the in-place subtraction operation self -= mt. More... | |
| LMatrixTranspose | __isub__ (ConstLMatrixExpression e) |
Performs the in-place subtraction operation self -= e. More... | |
| LMatrixTranspose | __imul__ (int t) |
Performs the in-place multiplication operation self *= t. More... | |
| LMatrixTranspose | __idiv__ (int t) |
Performs the in-place division operation self /= t. More... | |
| LMatrixTranspose | __itruediv__ (int t) |
Properties | |
| objectID = property(getObjectID) | |
| size1 = property(getSize1) | |
| size2 = property(getSize2) | |
| data = property(getData) | |
| None CDPL.Math.LMatrixTranspose.__init__ | ( | LMatrixTranspose | mt | ) |
Initializes a copy of the LMatrixTranspose instance mt.
| mt | The LMatrixTranspose instance to copy. |
| None CDPL.Math.LMatrixTranspose.__init__ | ( | LMatrixExpression | e | ) |
Initializes the LMatrixTranspose instance.
| e |
| int CDPL.Math.LMatrixTranspose.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python LMatrixTranspose instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b thus cannot tell reliably whether the two LMatrixTranspose instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID().
| LMatrixTranspose CDPL.Math.LMatrixTranspose.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. |
| LMatrixTranspose CDPL.Math.LMatrixTranspose.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. |
| LMatrixTranspose CDPL.Math.LMatrixTranspose.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. |
| LMatrixTranspose CDPL.Math.LMatrixTranspose.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. |
| LMatrixTranspose CDPL.Math.LMatrixTranspose.assign | ( | LMatrixTranspose | mt | ) |
Replaces the current state of self with a copy of the state of the LMatrixTranspose instance mt.
| mt | The LMatrixTranspose instance to copy. |
| None CDPL.Math.LMatrixTranspose.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. |
| int CDPL.Math.LMatrixTranspose.getSize1 | ( | ) |
| int CDPL.Math.LMatrixTranspose.getSize2 | ( | ) |
| bool CDPL.Math.LMatrixTranspose.isEmpty | ( | ) |
| int CDPL.Math.LMatrixTranspose.getElement | ( | int | i, |
| int | j | ||
| ) |
| i | |
| j |
| object CDPL.Math.LMatrixTranspose.toArray | ( | ) |
| None CDPL.Math.LMatrixTranspose.swap | ( | LMatrixTranspose | mt | ) |
| mt |
| None CDPL.Math.LMatrixTranspose.setElement | ( | int | i, |
| int | j, | ||
| int | v | ||
| ) |
| i | |
| j | |
| v |
| LMatrixExpression CDPL.Math.LMatrixTranspose.getData | ( | ) |
| int CDPL.Math.LMatrixTranspose.__call__ | ( | int | i, |
| int | j | ||
| ) |
| i | |
| j |
| int CDPL.Math.LMatrixTranspose.__getitem__ | ( | tuple | ij | ) |
| ij |
| int CDPL.Math.LMatrixTranspose.__len__ | ( | ) |
| bool CDPL.Math.LMatrixTranspose.__eq__ | ( | LMatrixTranspose | mt | ) |
Returns the result of the comparison operation self == mt.
| mt | The LMatrixTranspose instance to be compared with. |
| bool CDPL.Math.LMatrixTranspose.__eq__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self == e.
| e | The ConstLMatrixExpression instance to be compared with. |
| bool CDPL.Math.LMatrixTranspose.__ne__ | ( | LMatrixTranspose | mt | ) |
Returns the result of the comparison operation self != mt.
| mt | The LMatrixTranspose instance to be compared with. |
| bool CDPL.Math.LMatrixTranspose.__ne__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self != e.
| e | The ConstLMatrixExpression instance to be compared with. |
| str CDPL.Math.LMatrixTranspose.__str__ | ( | ) |
Returns a string representation of the LMatrixTranspose instance.
| LMatrixTranspose CDPL.Math.LMatrixTranspose.__pos__ | ( | ) |
| ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__neg__ | ( | ) |
| ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__add__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstLMatrixExpression instance holding the result of the addition. | ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__sub__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
LMatrixTranspose instance holding the result of the subtraction. | ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__mul__ | ( | int | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstLMatrixExpression instance holding the result of the multiplication. | ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__mul__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstLMatrixExpression instance holding the result of the multiplication. | ConstLVectorExpression CDPL.Math.LMatrixTranspose.__mul__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstLVectorExpression instance holding the result of the multiplication. | ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__div__ | ( | int | t | ) |
Returns the result of the division operation self / t.
| t | Specifies the divisor. |
ConstLMatrixExpression instance holding the result of the division. | ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__truediv__ | ( | int | t | ) |
| t |
| ConstLMatrixExpression CDPL.Math.LMatrixTranspose.__rmul__ | ( | int | t | ) |
| t |
| None CDPL.Math.LMatrixTranspose.__setitem__ | ( | tuple | ij, |
| int | v | ||
| ) |
| ij | |
| v |
| LMatrixTranspose CDPL.Math.LMatrixTranspose.__iadd__ | ( | LMatrixTranspose | mt | ) |
Performs the in-place addition operation self += mt.
| mt | Specifies the second addend. |
LMatrixTranspose instance self. | LMatrixTranspose CDPL.Math.LMatrixTranspose.__iadd__ | ( | ConstLMatrixExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
LMatrixTranspose instance self. | LMatrixTranspose CDPL.Math.LMatrixTranspose.__isub__ | ( | LMatrixTranspose | mt | ) |
Performs the in-place subtraction operation self -= mt.
| mt | Specifies the subtrahend. |
LMatrixTranspose instance self. | LMatrixTranspose CDPL.Math.LMatrixTranspose.__isub__ | ( | ConstLMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
LMatrixTranspose instance self. | LMatrixTranspose CDPL.Math.LMatrixTranspose.__imul__ | ( | int | t | ) |
Performs the in-place multiplication operation self *= t.
| t | Specifies the multiplier. |
LMatrixTranspose instance self. | LMatrixTranspose CDPL.Math.LMatrixTranspose.__idiv__ | ( | int | t | ) |
Performs the in-place division operation self /= t.
| t | Specifies the divisor. |
LMatrixTranspose instance self. | LMatrixTranspose CDPL.Math.LMatrixTranspose.__itruediv__ | ( | int | t | ) |
| t |