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