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