Chemical Data Processing Library Python API - Version 1.1.1
|
A bounded 4x4 matrix holding signed integers of type long
.
More...
Public Member Functions | |
None | __init__ () |
Initializes the Matrix4L instance. | |
None | __init__ (int v) |
Initializes the Matrix4L instance. More... | |
None | __init__ (Matrix4L m) |
Initializes a copy of the Matrix4L instance m. More... | |
None | __init__ (ConstFMatrixExpression e) |
Initializes the Matrix4L instance. More... | |
None | __init__ (ConstDMatrixExpression e) |
Initializes the Matrix4L instance. More... | |
None | __init__ (ConstLMatrixExpression e) |
Initializes the Matrix4L instance. More... | |
None | __init__ (ConstULMatrixExpression e) |
Initializes the Matrix4L instance. More... | |
None | __init__ (object a) |
Initializes the Matrix4L instance. More... | |
None | clear (int v=0) |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
Matrix4L | assign (ConstFMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More... | |
Matrix4L | assign (ConstDMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More... | |
Matrix4L | assign (ConstLMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More... | |
Matrix4L | assign (ConstULMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstULMatrixExpression instance e. More... | |
Matrix4L | assign (Matrix4L m) |
Replaces the current state of self with a copy of the state of the Matrix4L instance m. 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 (Matrix4L m) |
None | setElement (int i, int j, int v) |
int | __call__ (int i, int j) |
int | __getitem__ (tuple ij) |
int | __len__ () |
bool | __eq__ (Matrix4L 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__ (Matrix4L 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 Matrix4L instance. More... | |
Matrix4L | __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) |
Matrix4L | __iadd__ (Matrix4L m) |
Performs the in-place addition operation self += m . More... | |
Matrix4L | __iadd__ (ConstLMatrixExpression e) |
Performs the in-place addition operation self += e . More... | |
Matrix4L | __isub__ (Matrix4L m) |
Performs the in-place subtraction operation self -= m . More... | |
Matrix4L | __isub__ (ConstLMatrixExpression e) |
Performs the in-place subtraction operation self -= e . More... | |
Matrix4L | __imul__ (int t) |
Performs the in-place multiplication operation self *= t . More... | |
Matrix4L | __idiv__ (int t) |
Performs the in-place division operation self /= t . More... | |
Matrix4L | __itruediv__ (int t) |
Properties | |
objectID = property(getObjectID) | |
size1 = property(getSize1) | |
size2 = property(getSize2) | |
A bounded 4x4 matrix holding signed integers of type long
.
None CDPL.Math.Matrix4L.__init__ | ( | int | v | ) |
Initializes the Matrix4L instance.
v |
None CDPL.Math.Matrix4L.__init__ | ( | Matrix4L | m | ) |
Initializes a copy of the Matrix4L instance m.
m | The Matrix4L instance to copy. |
None CDPL.Math.Matrix4L.__init__ | ( | ConstFMatrixExpression | e | ) |
Initializes the Matrix4L instance.
e |
None CDPL.Math.Matrix4L.__init__ | ( | ConstDMatrixExpression | e | ) |
Initializes the Matrix4L instance.
e |
None CDPL.Math.Matrix4L.__init__ | ( | ConstLMatrixExpression | e | ) |
Initializes the Matrix4L instance.
e |
None CDPL.Math.Matrix4L.__init__ | ( | ConstULMatrixExpression | e | ) |
Initializes the Matrix4L instance.
e |
None CDPL.Math.Matrix4L.__init__ | ( | object | a | ) |
Initializes the Matrix4L instance.
a |
None CDPL.Math.Matrix4L.clear | ( | int | v = 0 | ) |
v |
int CDPL.Math.Matrix4L.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python Matrix4L 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 Matrix4L 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()
.
Matrix4L CDPL.Math.Matrix4L.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. |
Matrix4L CDPL.Math.Matrix4L.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. |
Matrix4L CDPL.Math.Matrix4L.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. |
Matrix4L CDPL.Math.Matrix4L.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. |
Replaces the current state of self with a copy of the state of the Matrix4L instance m.
m | The Matrix4L instance to copy. |
None CDPL.Math.Matrix4L.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.Matrix4L.getSize1 | ( | ) |
int CDPL.Math.Matrix4L.getSize2 | ( | ) |
bool CDPL.Math.Matrix4L.isEmpty | ( | ) |
int CDPL.Math.Matrix4L.getElement | ( | int | i, |
int | j | ||
) |
i | |
j |
object CDPL.Math.Matrix4L.toArray | ( | ) |
None CDPL.Math.Matrix4L.swap | ( | Matrix4L | m | ) |
m |
None CDPL.Math.Matrix4L.setElement | ( | int | i, |
int | j, | ||
int | v | ||
) |
i | |
j | |
v |
int CDPL.Math.Matrix4L.__call__ | ( | int | i, |
int | j | ||
) |
i | |
j |
int CDPL.Math.Matrix4L.__getitem__ | ( | tuple | ij | ) |
ij |
int CDPL.Math.Matrix4L.__len__ | ( | ) |
bool CDPL.Math.Matrix4L.__eq__ | ( | Matrix4L | m | ) |
Returns the result of the comparison operation self == m
.
m | The Matrix4L instance to be compared with. |
bool CDPL.Math.Matrix4L.__eq__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self == e
.
e | The ConstLMatrixExpression instance to be compared with. |
bool CDPL.Math.Matrix4L.__ne__ | ( | Matrix4L | m | ) |
Returns the result of the comparison operation self != m
.
m | The Matrix4L instance to be compared with. |
bool CDPL.Math.Matrix4L.__ne__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self != e
.
e | The ConstLMatrixExpression instance to be compared with. |
str CDPL.Math.Matrix4L.__str__ | ( | ) |
Returns a string representation of the Matrix4L instance.
Matrix4L CDPL.Math.Matrix4L.__pos__ | ( | ) |
ConstLMatrixExpression CDPL.Math.Matrix4L.__neg__ | ( | ) |
ConstLMatrixExpression CDPL.Math.Matrix4L.__add__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the addition operation self + e
.
e | Specifies the second addend. |
ConstLMatrixExpression CDPL.Math.Matrix4L.__sub__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the subtraction operation self - e
.
e | Specifies the subtrahend. |
ConstLMatrixExpression CDPL.Math.Matrix4L.__mul__ | ( | int | t | ) |
Returns the result of the multiplication operation self * t
.
t | Specifies the multiplier. |
ConstLMatrixExpression CDPL.Math.Matrix4L.__mul__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstLVectorExpression CDPL.Math.Matrix4L.__mul__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstLMatrixExpression CDPL.Math.Matrix4L.__div__ | ( | int | t | ) |
Returns the result of the division operation self / t
.
t | Specifies the divisor. |
ConstLMatrixExpression CDPL.Math.Matrix4L.__truediv__ | ( | int | t | ) |
t |
ConstLMatrixExpression CDPL.Math.Matrix4L.__rmul__ | ( | int | t | ) |
t |
None CDPL.Math.Matrix4L.__setitem__ | ( | tuple | ij, |
int | v | ||
) |
ij | |
v |
Performs the in-place addition operation self += m
.
m | Specifies the second addend. |
Matrix4L CDPL.Math.Matrix4L.__iadd__ | ( | ConstLMatrixExpression | e | ) |
Performs the in-place addition operation self += e
.
e | Specifies the second addend. |
Performs the in-place subtraction operation self -= m
.
m | Specifies the subtrahend. |
Matrix4L CDPL.Math.Matrix4L.__isub__ | ( | ConstLMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e
.
e | Specifies the subtrahend. |
Matrix4L CDPL.Math.Matrix4L.__imul__ | ( | int | t | ) |
Performs the in-place multiplication operation self *= t
.
t | Specifies the multiplier. |
Matrix4L CDPL.Math.Matrix4L.__idiv__ | ( | int | t | ) |
Performs the in-place division operation self /= t
.
t | Specifies the divisor. |
Matrix4L CDPL.Math.Matrix4L.__itruediv__ | ( | int | t | ) |
t |