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