![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.DScalingMatrix:Public Member Functions | |
| None | __init__ (DScalingMatrix m) |
| Initializes a copy of the DScalingMatrix instance m. More... | |
| None | __init__ (int n, float sx=1.0, float sy=1.0, float sz=1.0) |
| Initializes the DScalingMatrix instance. More... | |
| None | set (float sx=1.0, float sy=1.0, float sz=1.0) |
| 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 () |
| DScalingMatrix | assign (DScalingMatrix m) |
Replaces the current state of self with a copy of the state of the DScalingMatrix instance m. More... | |
| None | swap (DScalingMatrix m) |
| float | __call__ (int i, int j) |
| float | __getitem__ (tuple ij) |
| int | __len__ () |
| bool | __eq__ (DScalingMatrix m) |
Returns the result of the comparison operation self == m. More... | |
| bool | __eq__ (ConstDMatrixExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (DScalingMatrix m) |
Returns the result of the comparison operation self != m. More... | |
| bool | __ne__ (ConstDMatrixExpression e) |
Returns the result of the comparison operation self != e. More... | |
| str | __str__ () |
| Returns a string representation of the DScalingMatrix instance. More... | |
| DScalingMatrix | __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) |
Properties | |
| objectID = property(getObjectID) | |
| size1 = property(getSize1) | |
| size2 = property(getSize2) | |
| None CDPL.Math.DScalingMatrix.__init__ | ( | DScalingMatrix | m | ) |
Initializes a copy of the DScalingMatrix instance m.
| m | The DScalingMatrix instance to copy. |
| None CDPL.Math.DScalingMatrix.__init__ | ( | int | n, |
| float | sx = 1.0, |
||
| float | sy = 1.0, |
||
| float | sz = 1.0 |
||
| ) |
Initializes the DScalingMatrix instance.
| n | |
| sx | |
| sy | |
| sz |
| None CDPL.Math.DScalingMatrix.set | ( | float | sx = 1.0, |
| float | sy = 1.0, |
||
| float | sz = 1.0 |
||
| ) |
| sx | |
| sy | |
| sz |
| int CDPL.Math.DScalingMatrix.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python DScalingMatrix 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 DScalingMatrix 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.DScalingMatrix.getSize1 | ( | ) |
| int CDPL.Math.DScalingMatrix.getSize2 | ( | ) |
| bool CDPL.Math.DScalingMatrix.isEmpty | ( | ) |
| float CDPL.Math.DScalingMatrix.getElement | ( | int | i, |
| int | j | ||
| ) |
| i | |
| j |
| object CDPL.Math.DScalingMatrix.toArray | ( | ) |
| DScalingMatrix CDPL.Math.DScalingMatrix.assign | ( | DScalingMatrix | m | ) |
Replaces the current state of self with a copy of the state of the DScalingMatrix instance m.
| m | The DScalingMatrix instance to copy. |
| None CDPL.Math.DScalingMatrix.swap | ( | DScalingMatrix | m | ) |
| m |
| float CDPL.Math.DScalingMatrix.__call__ | ( | int | i, |
| int | j | ||
| ) |
| i | |
| j |
| float CDPL.Math.DScalingMatrix.__getitem__ | ( | tuple | ij | ) |
| ij |
| int CDPL.Math.DScalingMatrix.__len__ | ( | ) |
| bool CDPL.Math.DScalingMatrix.__eq__ | ( | DScalingMatrix | m | ) |
Returns the result of the comparison operation self == m.
| m | The DScalingMatrix instance to be compared with. |
| bool CDPL.Math.DScalingMatrix.__eq__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the comparison operation self == e.
| e | The ConstDMatrixExpression instance to be compared with. |
| bool CDPL.Math.DScalingMatrix.__ne__ | ( | DScalingMatrix | m | ) |
Returns the result of the comparison operation self != m.
| m | The DScalingMatrix instance to be compared with. |
| bool CDPL.Math.DScalingMatrix.__ne__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the comparison operation self != e.
| e | The ConstDMatrixExpression instance to be compared with. |
| str CDPL.Math.DScalingMatrix.__str__ | ( | ) |
Returns a string representation of the DScalingMatrix instance.
| DScalingMatrix CDPL.Math.DScalingMatrix.__pos__ | ( | ) |
| ConstDMatrixExpression CDPL.Math.DScalingMatrix.__neg__ | ( | ) |
| ConstDMatrixExpression CDPL.Math.DScalingMatrix.__add__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstDMatrixExpression instance holding the result of the addition. | ConstDMatrixExpression CDPL.Math.DScalingMatrix.__sub__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
DScalingMatrix instance holding the result of the subtraction. | ConstDMatrixExpression CDPL.Math.DScalingMatrix.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstDMatrixExpression instance holding the result of the multiplication. | ConstDMatrixExpression CDPL.Math.DScalingMatrix.__mul__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstDMatrixExpression instance holding the result of the multiplication. | ConstDVectorExpression CDPL.Math.DScalingMatrix.__mul__ | ( | ConstDVectorExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstDVectorExpression instance holding the result of the multiplication. | ConstDMatrixExpression CDPL.Math.DScalingMatrix.__div__ | ( | float | t | ) |
Returns the result of the division operation self / t.
| t | Specifies the divisor. |
ConstDMatrixExpression instance holding the result of the division. | ConstDMatrixExpression CDPL.Math.DScalingMatrix.__truediv__ | ( | float | t | ) |
| t |
| ConstDMatrixExpression CDPL.Math.DScalingMatrix.__rmul__ | ( | float | t | ) |
| t |