Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | __init__ () |
Initializes the DZeroGrid instance. | |
None | __init__ (DZeroGrid g) |
Initializes a copy of the DZeroGrid instance g. More... | |
None | __init__ (int m, int n, int o) |
Initializes the DZeroGrid instance. More... | |
None | resize (int m, int n, int o) |
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) |
float | getElement (int i) |
object | toArray () |
int | getSize () |
DZeroGrid | assign (DZeroGrid g) |
Replaces the current state of self with a copy of the state of the DZeroGrid instance g. More... | |
None | swap (DZeroGrid g) |
float | __call__ (int i, int j, int k) |
float | __call__ (int i) |
float | __getitem__ (tuple ijk) |
float | __getitem__ (int i) |
int | __len__ () |
bool | __eq__ (DZeroGrid g) |
Returns the result of the comparison operation self == g . More... | |
bool | __eq__ (ConstDGridExpression e) |
Returns the result of the comparison operation self == e . More... | |
bool | __ne__ (DZeroGrid g) |
Returns the result of the comparison operation self != g . More... | |
bool | __ne__ (ConstDGridExpression e) |
Returns the result of the comparison operation self != e . More... | |
str | __str__ () |
Returns a string representation of the DZeroGrid instance. More... | |
DZeroGrid | __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) |
Properties | |
objectID = property(getObjectID) | |
size1 = property(getSize1) | |
size2 = property(getSize2) | |
size3 = property(getSize3) | |
None CDPL.Math.DZeroGrid.__init__ | ( | DZeroGrid | g | ) |
Initializes a copy of the DZeroGrid instance g.
g | The DZeroGrid instance to copy. |
None CDPL.Math.DZeroGrid.__init__ | ( | int | m, |
int | n, | ||
int | o | ||
) |
Initializes the DZeroGrid instance.
m | |
n | |
o |
None CDPL.Math.DZeroGrid.resize | ( | int | m, |
int | n, | ||
int | o | ||
) |
m | |
n | |
o |
int CDPL.Math.DZeroGrid.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python DZeroGrid 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 DZeroGrid 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()
.
int CDPL.Math.DZeroGrid.getSize1 | ( | ) |
int CDPL.Math.DZeroGrid.getSize2 | ( | ) |
int CDPL.Math.DZeroGrid.getSize3 | ( | ) |
bool CDPL.Math.DZeroGrid.isEmpty | ( | ) |
float CDPL.Math.DZeroGrid.getElement | ( | int | i, |
int | j, | ||
int | k | ||
) |
i | |
j | |
k |
float CDPL.Math.DZeroGrid.getElement | ( | int | i | ) |
i |
object CDPL.Math.DZeroGrid.toArray | ( | ) |
int CDPL.Math.DZeroGrid.getSize | ( | ) |
Replaces the current state of self with a copy of the state of the DZeroGrid instance g.
g | The DZeroGrid instance to copy. |
None CDPL.Math.DZeroGrid.swap | ( | DZeroGrid | g | ) |
g |
float CDPL.Math.DZeroGrid.__call__ | ( | int | i, |
int | j, | ||
int | k | ||
) |
i | |
j | |
k |
float CDPL.Math.DZeroGrid.__call__ | ( | int | i | ) |
i |
float CDPL.Math.DZeroGrid.__getitem__ | ( | tuple | ijk | ) |
ijk |
float CDPL.Math.DZeroGrid.__getitem__ | ( | int | i | ) |
i |
int CDPL.Math.DZeroGrid.__len__ | ( | ) |
bool CDPL.Math.DZeroGrid.__eq__ | ( | DZeroGrid | g | ) |
Returns the result of the comparison operation self == g
.
g | The DZeroGrid instance to be compared with. |
bool CDPL.Math.DZeroGrid.__eq__ | ( | ConstDGridExpression | e | ) |
Returns the result of the comparison operation self == e
.
e | The ConstDGridExpression instance to be compared with. |
bool CDPL.Math.DZeroGrid.__ne__ | ( | DZeroGrid | g | ) |
Returns the result of the comparison operation self != g
.
g | The DZeroGrid instance to be compared with. |
bool CDPL.Math.DZeroGrid.__ne__ | ( | ConstDGridExpression | e | ) |
Returns the result of the comparison operation self != e
.
e | The ConstDGridExpression instance to be compared with. |
str CDPL.Math.DZeroGrid.__str__ | ( | ) |
Returns a string representation of the DZeroGrid instance.
DZeroGrid CDPL.Math.DZeroGrid.__pos__ | ( | ) |
ConstDGridExpression CDPL.Math.DZeroGrid.__neg__ | ( | ) |
ConstDGridExpression CDPL.Math.DZeroGrid.__add__ | ( | ConstDGridExpression | e | ) |
Returns the result of the addition operation self + e
.
e | Specifies the second addend. |
ConstDGridExpression CDPL.Math.DZeroGrid.__sub__ | ( | ConstDGridExpression | e | ) |
Returns the result of the subtraction operation self - e
.
e | Specifies the subtrahend. |
ConstDGridExpression CDPL.Math.DZeroGrid.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t
.
t | Specifies the multiplier. |
ConstDGridExpression CDPL.Math.DZeroGrid.__div__ | ( | float | t | ) |
Returns the result of the division operation self / t
.
t | Specifies the divisor. |
ConstDGridExpression CDPL.Math.DZeroGrid.__truediv__ | ( | float | t | ) |
t |
ConstDGridExpression CDPL.Math.DZeroGrid.__rmul__ | ( | float | t | ) |
t |