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