![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.LZeroVector:Public Member Functions | |
| None | __init__ () |
| Initializes the LZeroVector instance. | |
| None | __init__ (LZeroVector v) |
| Initializes a copy of the LZeroVector instance v. More... | |
| None | __init__ (int n) |
| Initializes the LZeroVector instance. More... | |
| None | resize (int n) |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| bool | isEmpty () |
| int | getSize () |
| int | getElement (int i) |
| object | toArray () |
| LZeroVector | assign (LZeroVector v) |
Replaces the current state of self with a copy of the state of the LZeroVector instance v. More... | |
| None | swap (LZeroVector v) |
| bool | __eq__ (LZeroVector v) |
Returns the result of the comparison operation self == v. More... | |
| bool | __eq__ (ConstLVectorExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (LZeroVector v) |
Returns the result of the comparison operation self != v. 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 LZeroVector instance. More... | |
| LZeroVector | __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) |
Properties | |
| objectID = property(getObjectID) | |
| size = property(getSize) | |
| None CDPL.Math.LZeroVector.__init__ | ( | LZeroVector | v | ) |
Initializes a copy of the LZeroVector instance v.
| v | The LZeroVector instance to copy. |
| None CDPL.Math.LZeroVector.__init__ | ( | int | n | ) |
Initializes the LZeroVector instance.
| n |
| None CDPL.Math.LZeroVector.resize | ( | int | n | ) |
| n |
| int CDPL.Math.LZeroVector.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python LZeroVector 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 LZeroVector 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().
| bool CDPL.Math.LZeroVector.isEmpty | ( | ) |
| int CDPL.Math.LZeroVector.getSize | ( | ) |
| int CDPL.Math.LZeroVector.getElement | ( | int | i | ) |
| i |
| object CDPL.Math.LZeroVector.toArray | ( | ) |
| LZeroVector CDPL.Math.LZeroVector.assign | ( | LZeroVector | v | ) |
Replaces the current state of self with a copy of the state of the LZeroVector instance v.
| v | The LZeroVector instance to copy. |
| None CDPL.Math.LZeroVector.swap | ( | LZeroVector | v | ) |
| v |
| bool CDPL.Math.LZeroVector.__eq__ | ( | LZeroVector | v | ) |
Returns the result of the comparison operation self == v.
| v | The LZeroVector instance to be compared with. |
| bool CDPL.Math.LZeroVector.__eq__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the comparison operation self == e.
| e | The ConstLVectorExpression instance to be compared with. |
| bool CDPL.Math.LZeroVector.__ne__ | ( | LZeroVector | v | ) |
Returns the result of the comparison operation self != v.
| v | The LZeroVector instance to be compared with. |
| bool CDPL.Math.LZeroVector.__ne__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the comparison operation self != e.
| e | The ConstLVectorExpression instance to be compared with. |
| int CDPL.Math.LZeroVector.__call__ | ( | int | i | ) |
| i |
| int CDPL.Math.LZeroVector.__getitem__ | ( | int | i | ) |
| i |
| int CDPL.Math.LZeroVector.__len__ | ( | ) |
| str CDPL.Math.LZeroVector.__str__ | ( | ) |
Returns a string representation of the LZeroVector instance.
| LZeroVector CDPL.Math.LZeroVector.__pos__ | ( | ) |
| ConstLVectorExpression CDPL.Math.LZeroVector.__neg__ | ( | ) |
| ConstLVectorExpression CDPL.Math.LZeroVector.__add__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstLVectorExpression instance holding the result of the addition. | ConstLVectorExpression CDPL.Math.LZeroVector.__sub__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
LZeroVector instance holding the result of the subtraction. | ConstLVectorExpression CDPL.Math.LZeroVector.__mul__ | ( | int | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstLVectorExpression instance holding the result of the multiplication. | ConstLVectorExpression CDPL.Math.LZeroVector.__mul__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstLVectorExpression instance holding the result of the multiplication. | ConstLVectorExpression CDPL.Math.LZeroVector.__div__ | ( | int | t | ) |
Returns the result of the division operation self / t.
| t | Specifies the divisor. |
ConstLVectorExpression instance holding the result of the division. | ConstLVectorExpression CDPL.Math.LZeroVector.__truediv__ | ( | int | t | ) |
| t |
| ConstLVectorExpression CDPL.Math.LZeroVector.__rmul__ | ( | int | t | ) |
| t |