Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | __init__ (DMatrixRange r) |
Initializes a copy of the DMatrixRange instance r. More... | |
None | __init__ (DMatrixExpression e, Range r1, Range r2) |
Initializes the DMatrixRange instance. More... | |
int | getStart1 () |
int | getStart2 () |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
DMatrixRange | assign (ConstFMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More... | |
DMatrixRange | assign (ConstDMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More... | |
DMatrixRange | assign (ConstLMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More... | |
DMatrixRange | assign (ConstULMatrixExpression e) |
Replaces the current state of self with a copy of the state of the ConstULMatrixExpression instance e. More... | |
DMatrixRange | assign (DMatrixRange r) |
Replaces the current state of self with a copy of the state of the DMatrixRange instance r. More... | |
None | assign (object a) |
Replaces the current state of self with a copy of the state of the object instance a. More... | |
int | getSize1 () |
int | getSize2 () |
bool | isEmpty () |
float | getElement (int i, int j) |
object | toArray () |
None | swap (DMatrixRange r) |
None | setElement (int i, int j, float v) |
DMatrixExpression | getData () |
float | __call__ (int i, int j) |
float | __getitem__ (tuple ij) |
int | __len__ () |
bool | __eq__ (DMatrixRange r) |
Returns the result of the comparison operation self == r . More... | |
bool | __eq__ (ConstDMatrixExpression e) |
Returns the result of the comparison operation self == e . More... | |
bool | __ne__ (DMatrixRange r) |
Returns the result of the comparison operation self != r . More... | |
bool | __ne__ (ConstDMatrixExpression e) |
Returns the result of the comparison operation self != e . More... | |
str | __str__ () |
Returns a string representation of the DMatrixRange instance. More... | |
DMatrixRange | __pos__ () |
ConstDMatrixExpression | __neg__ () |
ConstDMatrixExpression | __add__ (ConstDMatrixExpression e) |
Returns the result of the addition operation self + e . More... | |
ConstDMatrixExpression | __sub__ (ConstDMatrixExpression e) |
Returns the result of the subtraction operation self - e . More... | |
ConstDMatrixExpression | __mul__ (float t) |
Returns the result of the multiplication operation self * t . More... | |
ConstDMatrixExpression | __mul__ (ConstDMatrixExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstDVectorExpression | __mul__ (ConstDVectorExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstDMatrixExpression | __div__ (float t) |
Returns the result of the division operation self / t . More... | |
ConstDMatrixExpression | __truediv__ (float t) |
ConstDMatrixExpression | __rmul__ (float t) |
None | __setitem__ (tuple ij, float v) |
DMatrixRange | __iadd__ (DMatrixRange r) |
Performs the in-place addition operation self += r . More... | |
DMatrixRange | __iadd__ (ConstDMatrixExpression e) |
Performs the in-place addition operation self += e . More... | |
DMatrixRange | __isub__ (DMatrixRange r) |
Performs the in-place subtraction operation self -= r . More... | |
DMatrixRange | __isub__ (ConstDMatrixExpression e) |
Performs the in-place subtraction operation self -= e . More... | |
DMatrixRange | __imul__ (float t) |
Performs the in-place multiplication operation self *= t . More... | |
DMatrixRange | __idiv__ (float t) |
Performs the in-place division operation self /= t . More... | |
DMatrixRange | __itruediv__ (float t) |
Properties | |
objectID = property(getObjectID) | |
size1 = property(getSize1) | |
size2 = property(getSize2) | |
data = property(getData) | |
start1 = property(getStart1) | |
start2 = property(getStart2) | |
None CDPL.Math.DMatrixRange.__init__ | ( | DMatrixRange | r | ) |
Initializes a copy of the DMatrixRange instance r.
r | The DMatrixRange instance to copy. |
None CDPL.Math.DMatrixRange.__init__ | ( | DMatrixExpression | e, |
Range | r1, | ||
Range | r2 | ||
) |
Initializes the DMatrixRange instance.
e | |
r1 | |
r2 |
int CDPL.Math.DMatrixRange.getStart1 | ( | ) |
int CDPL.Math.DMatrixRange.getStart2 | ( | ) |
int CDPL.Math.DMatrixRange.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python DMatrixRange 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 DMatrixRange 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()
.
DMatrixRange CDPL.Math.DMatrixRange.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. |
DMatrixRange CDPL.Math.DMatrixRange.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. |
DMatrixRange CDPL.Math.DMatrixRange.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. |
DMatrixRange CDPL.Math.DMatrixRange.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. |
DMatrixRange CDPL.Math.DMatrixRange.assign | ( | DMatrixRange | r | ) |
Replaces the current state of self with a copy of the state of the DMatrixRange instance r.
r | The DMatrixRange instance to copy. |
None CDPL.Math.DMatrixRange.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. |
int CDPL.Math.DMatrixRange.getSize1 | ( | ) |
int CDPL.Math.DMatrixRange.getSize2 | ( | ) |
bool CDPL.Math.DMatrixRange.isEmpty | ( | ) |
float CDPL.Math.DMatrixRange.getElement | ( | int | i, |
int | j | ||
) |
i | |
j |
object CDPL.Math.DMatrixRange.toArray | ( | ) |
None CDPL.Math.DMatrixRange.swap | ( | DMatrixRange | r | ) |
r |
None CDPL.Math.DMatrixRange.setElement | ( | int | i, |
int | j, | ||
float | v | ||
) |
i | |
j | |
v |
DMatrixExpression CDPL.Math.DMatrixRange.getData | ( | ) |
float CDPL.Math.DMatrixRange.__call__ | ( | int | i, |
int | j | ||
) |
i | |
j |
float CDPL.Math.DMatrixRange.__getitem__ | ( | tuple | ij | ) |
ij |
int CDPL.Math.DMatrixRange.__len__ | ( | ) |
bool CDPL.Math.DMatrixRange.__eq__ | ( | DMatrixRange | r | ) |
Returns the result of the comparison operation self == r
.
r | The DMatrixRange instance to be compared with. |
bool CDPL.Math.DMatrixRange.__eq__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the comparison operation self == e
.
e | The ConstDMatrixExpression instance to be compared with. |
bool CDPL.Math.DMatrixRange.__ne__ | ( | DMatrixRange | r | ) |
Returns the result of the comparison operation self != r
.
r | The DMatrixRange instance to be compared with. |
bool CDPL.Math.DMatrixRange.__ne__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the comparison operation self != e
.
e | The ConstDMatrixExpression instance to be compared with. |
str CDPL.Math.DMatrixRange.__str__ | ( | ) |
Returns a string representation of the DMatrixRange instance.
DMatrixRange CDPL.Math.DMatrixRange.__pos__ | ( | ) |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__neg__ | ( | ) |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__add__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the addition operation self + e
.
e | Specifies the second addend. |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__sub__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the subtraction operation self - e
.
e | Specifies the subtrahend. |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t
.
t | Specifies the multiplier. |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__mul__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstDVectorExpression CDPL.Math.DMatrixRange.__mul__ | ( | ConstDVectorExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__div__ | ( | float | t | ) |
Returns the result of the division operation self / t
.
t | Specifies the divisor. |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__truediv__ | ( | float | t | ) |
t |
ConstDMatrixExpression CDPL.Math.DMatrixRange.__rmul__ | ( | float | t | ) |
t |
None CDPL.Math.DMatrixRange.__setitem__ | ( | tuple | ij, |
float | v | ||
) |
ij | |
v |
DMatrixRange CDPL.Math.DMatrixRange.__iadd__ | ( | DMatrixRange | r | ) |
Performs the in-place addition operation self += r
.
r | Specifies the second addend. |
DMatrixRange CDPL.Math.DMatrixRange.__iadd__ | ( | ConstDMatrixExpression | e | ) |
Performs the in-place addition operation self += e
.
e | Specifies the second addend. |
DMatrixRange CDPL.Math.DMatrixRange.__isub__ | ( | DMatrixRange | r | ) |
Performs the in-place subtraction operation self -= r
.
r | Specifies the subtrahend. |
DMatrixRange CDPL.Math.DMatrixRange.__isub__ | ( | ConstDMatrixExpression | e | ) |
Performs the in-place subtraction operation self -= e
.
e | Specifies the subtrahend. |
DMatrixRange CDPL.Math.DMatrixRange.__imul__ | ( | float | t | ) |
Performs the in-place multiplication operation self *= t
.
t | Specifies the multiplier. |
DMatrixRange CDPL.Math.DMatrixRange.__idiv__ | ( | float | t | ) |
Performs the in-place division operation self /= t
.
t | Specifies the divisor. |
DMatrixRange CDPL.Math.DMatrixRange.__itruediv__ | ( | float | t | ) |
t |