Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | swap (ULMatrixExpression e) |
ULMatrixExpression | assign (ULMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ULMatrixExpression instance e. More... | |
ULMatrixExpression | assign (ConstFMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More... | |
ULMatrixExpression | assign (ConstDMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More... | |
ULMatrixExpression | assign (ConstLMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More... | |
ULMatrixExpression | assign (ConstULMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstULMatrixExpression instance e. More... | |
None | assign (object a) |
Replaces the current state of self with a copy of the state of the object instance a. More... | |
None | setElement (int i, int j, int v) |
None | __setitem__ (tuple ij, int v) |
ULMatrixExpression | __iadd__ (ULMatrixExpression e) |
Performs the in-place addition operation self += e . More... | |
ULMatrixExpression | __iadd__ (ConstULMatrixExpression e) |
Performs the in-place addition operation self += e . More... | |
ULMatrixExpression | __isub__ (ULMatrixExpression e) |
Performs the in-place subtraction operation self -= e . More... | |
ULMatrixExpression | __isub__ (ConstULMatrixExpression e) |
Performs the in-place subtraction operation self -= e . More... | |
ULMatrixExpression | __imul__ (int t) |
Performs the in-place multiplication operation self *= t . More... | |
ULMatrixExpression | __idiv__ (int t) |
Performs the in-place division operation self /= t . More... | |
ULMatrixExpression | __itruediv__ (int t) |
Public Member Functions inherited from CDPL.Math.ConstULMatrixExpression | |
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 () |
int | __call__ (int i, int j) |
int | __getitem__ (tuple ij) |
int | __len__ () |
bool | __eq__ (ConstULMatrixExpression e) |
Returns the result of the comparison operation self == e . More... | |
bool | __ne__ (ConstULMatrixExpression e) |
Returns the result of the comparison operation self != e . More... | |
str | __str__ () |
Returns a string representation of the ConstULMatrixExpression instance. More... | |
ConstULMatrixExpression | __pos__ () |
ConstULMatrixExpression | __neg__ () |
ConstULMatrixExpression | __add__ (ConstULMatrixExpression e) |
Returns the result of the addition operation self + e . More... | |
ConstULMatrixExpression | __sub__ (ConstULMatrixExpression e) |
Returns the result of the subtraction operation self - e . More... | |
ConstULMatrixExpression | __mul__ (int t) |
Returns the result of the multiplication operation self * t . More... | |
ConstULMatrixExpression | __mul__ (ConstULMatrixExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstULVectorExpression | __mul__ (ConstULVectorExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstULMatrixExpression | __div__ (int t) |
Returns the result of the division operation self / t . More... | |
ConstULMatrixExpression | __truediv__ (int t) |
ConstULMatrixExpression | __rmul__ (int t) |
Additional Inherited Members | |
Properties inherited from CDPL.Math.ConstULMatrixExpression | |
objectID = property(getObjectID) | |
size1 = property(getSize1) | |
size2 = property(getSize2) | |
None CDPL.Math.ULMatrixExpression.swap | ( | ULMatrixExpression | e | ) |
e |
ULMatrixExpression CDPL.Math.ULMatrixExpression.assign | ( | ULMatrixExpression | e | ) |
Replaces the current state of self with a copy of the state of the ULMatrixExpression instance e.
e | The ULMatrixExpression instance to copy. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.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. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.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. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.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. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.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. |
None CDPL.Math.ULMatrixExpression.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. |
None CDPL.Math.ULMatrixExpression.setElement | ( | int | i, |
int | j, | ||
int | v | ||
) |
i | |
j | |
v |
None CDPL.Math.ULMatrixExpression.__setitem__ | ( | tuple | ij, |
int | v | ||
) |
ij | |
v |
ULMatrixExpression CDPL.Math.ULMatrixExpression.__iadd__ | ( | ULMatrixExpression | e | ) |
Performs the in-place addition operation self += e
.
e | Specifies the second addend. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.__iadd__ | ( | ConstULMatrixExpression | e | ) |
Performs the in-place addition operation self += e
.
e | Specifies the second addend. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.__isub__ | ( | ULMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e
.
e | Specifies the subtrahend. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.__isub__ | ( | ConstULMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e
.
e | Specifies the subtrahend. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.__imul__ | ( | int | t | ) |
Performs the in-place multiplication operation self *= t
.
t | Specifies the multiplier. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.__idiv__ | ( | int | t | ) |
Performs the in-place division operation self /= t
.
t | Specifies the divisor. |
ULMatrixExpression CDPL.Math.ULMatrixExpression.__itruediv__ | ( | int | t | ) |
t |