![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.ULVectorExpression:Public Member Functions | |
| None | swap (ULVectorExpression e) |
| ULVectorExpression | assign (ULVectorExpression e) |
Replaces the current state of self with a copy of the state of the ULVectorExpression instance e. More... | |
| ULVectorExpression | assign (ConstFVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e. More... | |
| ULVectorExpression | assign (ConstDVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e. More... | |
| ULVectorExpression | assign (ConstLVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e. More... | |
| ULVectorExpression | assign (ConstULVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstULVectorExpression 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 v) |
| None | __setitem__ (int i, int v) |
| ULVectorExpression | __iadd__ (ULVectorExpression e) |
Performs the in-place addition operation self += e. More... | |
| ULVectorExpression | __iadd__ (ConstULVectorExpression e) |
Performs the in-place addition operation self += e. More... | |
| ULVectorExpression | __isub__ (ULVectorExpression e) |
Performs the in-place subtraction operation self -= e. More... | |
| ULVectorExpression | __isub__ (ConstULVectorExpression e) |
Performs the in-place subtraction operation self -= e. More... | |
| ULVectorExpression | __imul__ (int t) |
Performs the in-place multiplication operation self *= t. More... | |
| ULVectorExpression | __idiv__ (int t) |
Performs the in-place division operation self /= t. More... | |
| ULVectorExpression | __itruediv__ (int t) |
Public Member Functions inherited from CDPL.Math.ConstULVectorExpression | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| bool | isEmpty () |
| int | getSize () |
| int | getElement (int i) |
| object | toArray () |
| bool | __eq__ (ConstULVectorExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (ConstULVectorExpression e) |
Returns the result of the comparison operation self != e. More... | |
| int | __call__ (int i) |
| int | __getitem__ (int i) |
| int | __len__ () |
| str | __str__ () |
| Returns a string representation of the ConstULVectorExpression instance. More... | |
| ConstULVectorExpression | __pos__ () |
| ConstULVectorExpression | __neg__ () |
| ConstULVectorExpression | __add__ (ConstULVectorExpression e) |
Returns the result of the addition operation self + e. More... | |
| ConstULVectorExpression | __sub__ (ConstULVectorExpression e) |
Returns the result of the subtraction operation self - e. More... | |
| ConstULVectorExpression | __mul__ (int t) |
Returns the result of the multiplication operation self * t. More... | |
| ConstULVectorExpression | __mul__ (ConstULMatrixExpression e) |
Returns the result of the multiplication operation self * e. More... | |
| ConstULVectorExpression | __div__ (int t) |
Returns the result of the division operation self / t. More... | |
| ConstULVectorExpression | __truediv__ (int t) |
| ConstULVectorExpression | __rmul__ (int t) |
Additional Inherited Members | |
Properties inherited from CDPL.Math.ConstULVectorExpression | |
| objectID = property(getObjectID) | |
| size = property(getSize) | |
| None CDPL.Math.ULVectorExpression.swap | ( | ULVectorExpression | e | ) |
| e |
| ULVectorExpression CDPL.Math.ULVectorExpression.assign | ( | ULVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ULVectorExpression instance e.
| e | The ULVectorExpression instance to copy. |
| ULVectorExpression CDPL.Math.ULVectorExpression.assign | ( | ConstFVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e.
| e | The ConstFVectorExpression instance to copy. |
| ULVectorExpression CDPL.Math.ULVectorExpression.assign | ( | ConstDVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e.
| e | The ConstDVectorExpression instance to copy. |
| ULVectorExpression CDPL.Math.ULVectorExpression.assign | ( | ConstLVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e.
| e | The ConstLVectorExpression instance to copy. |
| ULVectorExpression CDPL.Math.ULVectorExpression.assign | ( | ConstULVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e.
| e | The ConstULVectorExpression instance to copy. |
| None CDPL.Math.ULVectorExpression.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.ULVectorExpression.setElement | ( | int | i, |
| int | v | ||
| ) |
| i | |
| v |
| None CDPL.Math.ULVectorExpression.__setitem__ | ( | int | i, |
| int | v | ||
| ) |
| i | |
| v |
| ULVectorExpression CDPL.Math.ULVectorExpression.__iadd__ | ( | ULVectorExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
ULVectorExpression instance self. | ULVectorExpression CDPL.Math.ULVectorExpression.__iadd__ | ( | ConstULVectorExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
ULVectorExpression instance self. | ULVectorExpression CDPL.Math.ULVectorExpression.__isub__ | ( | ULVectorExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
ULVectorExpression instance self. | ULVectorExpression CDPL.Math.ULVectorExpression.__isub__ | ( | ConstULVectorExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
ULVectorExpression instance self. | ULVectorExpression CDPL.Math.ULVectorExpression.__imul__ | ( | int | t | ) |
Performs the in-place multiplication operation self *= t.
| t | Specifies the multiplier. |
ULVectorExpression instance self. | ULVectorExpression CDPL.Math.ULVectorExpression.__idiv__ | ( | int | t | ) |
Performs the in-place division operation self /= t.
| t | Specifies the divisor. |
ULVectorExpression instance self. | ULVectorExpression CDPL.Math.ULVectorExpression.__itruediv__ | ( | int | t | ) |
| t |