Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | __init__ (ConstLMatrixSlice s) |
Initializes a copy of the ConstLMatrixSlice instance s. More... | |
None | __init__ (ConstLMatrixExpression e, ast.Slice s1, ast.Slice s2) |
Initializes the ConstLMatrixSlice instance. More... | |
int | getStart1 () |
int | getStart2 () |
int | getStride1 () |
int | getStride2 () |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
int | getSize1 () |
int | getSize2 () |
bool | isEmpty () |
int | getElement (int i, int j) |
object | toArray () |
ConstLMatrixExpression | getData () |
int | __call__ (int i, int j) |
int | __getitem__ (tuple ij) |
int | __len__ () |
bool | __eq__ (ConstLMatrixSlice s) |
Returns the result of the comparison operation self == s . More... | |
bool | __eq__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self == e . More... | |
bool | __ne__ (ConstLMatrixSlice s) |
Returns the result of the comparison operation self != s . More... | |
bool | __ne__ (ConstLMatrixExpression e) |
Returns the result of the comparison operation self != e . More... | |
str | __str__ () |
Returns a string representation of the ConstLMatrixSlice instance. More... | |
ConstLMatrixSlice | __pos__ () |
ConstLMatrixExpression | __neg__ () |
ConstLMatrixExpression | __add__ (ConstLMatrixExpression e) |
Returns the result of the addition operation self + e . More... | |
ConstLMatrixExpression | __sub__ (ConstLMatrixExpression e) |
Returns the result of the subtraction operation self - e . More... | |
ConstLMatrixExpression | __mul__ (int t) |
Returns the result of the multiplication operation self * t . More... | |
ConstLMatrixExpression | __mul__ (ConstLMatrixExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstLVectorExpression | __mul__ (ConstLVectorExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstLMatrixExpression | __div__ (int t) |
Returns the result of the division operation self / t . More... | |
ConstLMatrixExpression | __truediv__ (int t) |
ConstLMatrixExpression | __rmul__ (int t) |
Properties | |
objectID = property(getObjectID) | |
size1 = property(getSize1) | |
size2 = property(getSize2) | |
data = property(getData) | |
start1 = property(getStart1) | |
start2 = property(getStart2) | |
stride1 = property(getStride1) | |
stride2 = property(getStride2) | |
None CDPL.Math.ConstLMatrixSlice.__init__ | ( | ConstLMatrixSlice | s | ) |
Initializes a copy of the ConstLMatrixSlice instance s.
s | The ConstLMatrixSlice instance to copy. |
None CDPL.Math.ConstLMatrixSlice.__init__ | ( | ConstLMatrixExpression | e, |
ast.Slice | s1, | ||
ast.Slice | s2 | ||
) |
Initializes the ConstLMatrixSlice instance.
e | |
s1 | |
s2 |
int CDPL.Math.ConstLMatrixSlice.getStart1 | ( | ) |
int CDPL.Math.ConstLMatrixSlice.getStart2 | ( | ) |
int CDPL.Math.ConstLMatrixSlice.getStride1 | ( | ) |
int CDPL.Math.ConstLMatrixSlice.getStride2 | ( | ) |
int CDPL.Math.ConstLMatrixSlice.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python ConstLMatrixSlice 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 ConstLMatrixSlice 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.ConstLMatrixSlice.getSize1 | ( | ) |
int CDPL.Math.ConstLMatrixSlice.getSize2 | ( | ) |
bool CDPL.Math.ConstLMatrixSlice.isEmpty | ( | ) |
int CDPL.Math.ConstLMatrixSlice.getElement | ( | int | i, |
int | j | ||
) |
i | |
j |
object CDPL.Math.ConstLMatrixSlice.toArray | ( | ) |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.getData | ( | ) |
int CDPL.Math.ConstLMatrixSlice.__call__ | ( | int | i, |
int | j | ||
) |
i | |
j |
int CDPL.Math.ConstLMatrixSlice.__getitem__ | ( | tuple | ij | ) |
ij |
int CDPL.Math.ConstLMatrixSlice.__len__ | ( | ) |
bool CDPL.Math.ConstLMatrixSlice.__eq__ | ( | ConstLMatrixSlice | s | ) |
Returns the result of the comparison operation self == s
.
s | The ConstLMatrixSlice instance to be compared with. |
bool CDPL.Math.ConstLMatrixSlice.__eq__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self == e
.
e | The ConstLMatrixExpression instance to be compared with. |
bool CDPL.Math.ConstLMatrixSlice.__ne__ | ( | ConstLMatrixSlice | s | ) |
Returns the result of the comparison operation self != s
.
s | The ConstLMatrixSlice instance to be compared with. |
bool CDPL.Math.ConstLMatrixSlice.__ne__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the comparison operation self != e
.
e | The ConstLMatrixExpression instance to be compared with. |
str CDPL.Math.ConstLMatrixSlice.__str__ | ( | ) |
Returns a string representation of the ConstLMatrixSlice instance.
ConstLMatrixSlice CDPL.Math.ConstLMatrixSlice.__pos__ | ( | ) |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__neg__ | ( | ) |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__add__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the addition operation self + e
.
e | Specifies the second addend. |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__sub__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the subtraction operation self - e
.
e | Specifies the subtrahend. |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__mul__ | ( | int | t | ) |
Returns the result of the multiplication operation self * t
.
t | Specifies the multiplier. |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__mul__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstLVectorExpression CDPL.Math.ConstLMatrixSlice.__mul__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__div__ | ( | int | t | ) |
Returns the result of the division operation self / t
.
t | Specifies the divisor. |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__truediv__ | ( | int | t | ) |
t |
ConstLMatrixExpression CDPL.Math.ConstLMatrixSlice.__rmul__ | ( | int | t | ) |
t |