![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.ConstLowerTriangularLMatrixAdapter:Public Member Functions | |
| None | __init__ (ConstLowerTriangularLMatrixAdapter a) |
| Initializes a copy of the ConstLowerTriangularLMatrixAdapter instance a. More... | |
| None | __init__ (ConstLMatrixExpression e) |
| Initializes the ConstLowerTriangularLMatrixAdapter instance. More... | |
| 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 () |
| ConstLMatrixExpression | getData () |
| int | __call__ (int i, int j) |
| int | __getitem__ (tuple ij) |
| int | __len__ () |
| bool | __eq__ (ConstLowerTriangularLMatrixAdapter a) |
Returns the result of the comparison operation self == a. More... | |
| bool | __eq__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (ConstLowerTriangularLMatrixAdapter a) |
Returns the result of the comparison operation self != a. More... | |
| bool | __ne__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self != e. More... | |
| str | __str__ () |
| Returns a string representation of the ConstLowerTriangularLMatrixAdapter instance. More... | |
| ConstLowerTriangularLMatrixAdapter | __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) |
Properties | |
| objectID = property(getObjectID) | |
| size1 = property(getSize1) | |
| size2 = property(getSize2) | |
| data = property(getData) | |
| None CDPL.Math.ConstLowerTriangularLMatrixAdapter.__init__ | ( | ConstLowerTriangularLMatrixAdapter | a | ) |
Initializes a copy of the ConstLowerTriangularLMatrixAdapter instance a.
| a | The ConstLowerTriangularLMatrixAdapter instance to copy. |
| None CDPL.Math.ConstLowerTriangularLMatrixAdapter.__init__ | ( | ConstLMatrixExpression | e | ) |
Initializes the ConstLowerTriangularLMatrixAdapter instance.
| e |
| int CDPL.Math.ConstLowerTriangularLMatrixAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python ConstLowerTriangularLMatrixAdapter 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 ConstLowerTriangularLMatrixAdapter 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().
| int CDPL.Math.ConstLowerTriangularLMatrixAdapter.getSize1 | ( | ) |
| int CDPL.Math.ConstLowerTriangularLMatrixAdapter.getSize2 | ( | ) |
| bool CDPL.Math.ConstLowerTriangularLMatrixAdapter.isEmpty | ( | ) |
| int CDPL.Math.ConstLowerTriangularLMatrixAdapter.getElement | ( | int | i, |
| int | j | ||
| ) |
| i | |
| j |
| object CDPL.Math.ConstLowerTriangularLMatrixAdapter.toArray | ( | ) |
| ConstLMatrixExpression CDPL.Math.ConstLowerTriangularLMatrixAdapter.getData | ( | ) |
| int CDPL.Math.ConstLowerTriangularLMatrixAdapter.__call__ | ( | int | i, |
| int | j | ||
| ) |
| i | |
| j |
| int CDPL.Math.ConstLowerTriangularLMatrixAdapter.__getitem__ | ( | tuple | ij | ) |
| ij |
| int CDPL.Math.ConstLowerTriangularLMatrixAdapter.__len__ | ( | ) |
| bool CDPL.Math.ConstLowerTriangularLMatrixAdapter.__eq__ | ( | ConstLowerTriangularLMatrixAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The ConstLowerTriangularLMatrixAdapter instance to be compared with. |
| bool CDPL.Math.ConstLowerTriangularLMatrixAdapter.__eq__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self == e.
| e | The ConstLMatrixExpression instance to be compared with. |
| bool CDPL.Math.ConstLowerTriangularLMatrixAdapter.__ne__ | ( | ConstLowerTriangularLMatrixAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The ConstLowerTriangularLMatrixAdapter instance to be compared with. |
| bool CDPL.Math.ConstLowerTriangularLMatrixAdapter.__ne__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self != e.
| e | The ConstLMatrixExpression instance to be compared with. |
| str CDPL.Math.ConstLowerTriangularLMatrixAdapter.__str__ | ( | ) |
Returns a string representation of the ConstLowerTriangularLMatrixAdapter instance.
| ConstLowerTriangularLMatrixAdapter CDPL.Math.ConstLowerTriangularLMatrixAdapter.__pos__ | ( | ) |
| ConstLMatrixExpression CDPL.Math.ConstLowerTriangularLMatrixAdapter.__neg__ | ( | ) |
| ConstLMatrixExpression CDPL.Math.ConstLowerTriangularLMatrixAdapter.__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.ConstLowerTriangularLMatrixAdapter.__sub__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
ConstLowerTriangularLMatrixAdapter instance holding the result of the subtraction. | ConstLMatrixExpression CDPL.Math.ConstLowerTriangularLMatrixAdapter.__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.ConstLowerTriangularLMatrixAdapter.__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.ConstLowerTriangularLMatrixAdapter.__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.ConstLowerTriangularLMatrixAdapter.__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.ConstLowerTriangularLMatrixAdapter.__truediv__ | ( | int | t | ) |
| t |
| ConstLMatrixExpression CDPL.Math.ConstLowerTriangularLMatrixAdapter.__rmul__ | ( | int | t | ) |
| t |