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