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