Chemical Data Processing Library Python API - Version 1.1.1
Public Member Functions | List of all members
CDPL.Math.FVectorExpression Class Reference
+ Inheritance diagram for CDPL.Math.FVectorExpression:

Public Member Functions

None swap (FVectorExpression e)
 
FVectorExpression assign (FVectorExpression e)
 Replaces the current state of self with a copy of the state of the FVectorExpression instance e. More...
 
FVectorExpression assign (ConstFVectorExpression e)
 Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e. More...
 
FVectorExpression assign (ConstDVectorExpression e)
 Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e. More...
 
FVectorExpression assign (ConstLVectorExpression e)
 Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e. More...
 
FVectorExpression assign (ConstULVectorExpression e)
 Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e. More...
 
None assign (object a)
 Replaces the current state of self with a copy of the state of the object instance a. More...
 
None setElement (int i, float v)
 
None __setitem__ (int i, float v)
 
FVectorExpression __iadd__ (FVectorExpression e)
 Performs the in-place addition operation self += e. More...
 
FVectorExpression __iadd__ (ConstFVectorExpression e)
 Performs the in-place addition operation self += e. More...
 
FVectorExpression __isub__ (FVectorExpression e)
 Performs the in-place subtraction operation self -= e. More...
 
FVectorExpression __isub__ (ConstFVectorExpression e)
 Performs the in-place subtraction operation self -= e. More...
 
FVectorExpression __imul__ (float t)
 Performs the in-place multiplication operation self *= t. More...
 
FVectorExpression __idiv__ (float t)
 Performs the in-place division operation self /= t. More...
 
FVectorExpression __itruediv__ (float t)
 
- Public Member Functions inherited from CDPL.Math.ConstFVectorExpression
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
bool isEmpty ()
 
int getSize ()
 
float getElement (int i)
 
object toArray ()
 
bool __eq__ (ConstFVectorExpression e)
 Returns the result of the comparison operation self == e. More...
 
bool __ne__ (ConstFVectorExpression 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 ConstFVectorExpression instance. More...
 
ConstFVectorExpression __pos__ ()
 
ConstFVectorExpression __neg__ ()
 
ConstFVectorExpression __add__ (ConstFVectorExpression e)
 Returns the result of the addition operation self + e. More...
 
ConstFVectorExpression __sub__ (ConstFVectorExpression e)
 Returns the result of the subtraction operation self - e. More...
 
ConstFVectorExpression __mul__ (float t)
 Returns the result of the multiplication operation self * t. More...
 
ConstFVectorExpression __mul__ (ConstFMatrixExpression e)
 Returns the result of the multiplication operation self * e. More...
 
ConstFVectorExpression __div__ (float t)
 Returns the result of the division operation self / t. More...
 
ConstFVectorExpression __truediv__ (float t)
 
ConstFVectorExpression __rmul__ (float t)
 

Additional Inherited Members

- Properties inherited from CDPL.Math.ConstFVectorExpression
 objectID = property(getObjectID)
 
 size = property(getSize)
 

Member Function Documentation

◆ swap()

None CDPL.Math.FVectorExpression.swap ( FVectorExpression  e)
Parameters
e

◆ assign() [1/6]

FVectorExpression CDPL.Math.FVectorExpression.assign ( FVectorExpression  e)

Replaces the current state of self with a copy of the state of the FVectorExpression instance e.

Parameters
eThe FVectorExpression instance to copy.
Returns
self

◆ assign() [2/6]

FVectorExpression CDPL.Math.FVectorExpression.assign ( ConstFVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e.

Parameters
eThe ConstFVectorExpression instance to copy.
Returns
self

◆ assign() [3/6]

FVectorExpression CDPL.Math.FVectorExpression.assign ( ConstDVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e.

Parameters
eThe ConstDVectorExpression instance to copy.
Returns
self

◆ assign() [4/6]

FVectorExpression CDPL.Math.FVectorExpression.assign ( ConstLVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e.

Parameters
eThe ConstLVectorExpression instance to copy.
Returns
self

◆ assign() [5/6]

FVectorExpression CDPL.Math.FVectorExpression.assign ( ConstULVectorExpression  e)

Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e.

Parameters
eThe ConstULVectorExpression instance to copy.
Returns
self

◆ assign() [6/6]

None CDPL.Math.FVectorExpression.assign ( object  a)

Replaces the current state of self with a copy of the state of the object instance a.

Parameters
aThe object instance to copy.
Returns
self

◆ setElement()

None CDPL.Math.FVectorExpression.setElement ( int  i,
float  v 
)
Parameters
i
v

◆ __setitem__()

None CDPL.Math.FVectorExpression.__setitem__ ( int  i,
float  v 
)
Parameters
i
v

◆ __iadd__() [1/2]

FVectorExpression CDPL.Math.FVectorExpression.__iadd__ ( FVectorExpression  e)

Performs the in-place addition operation self += e.

Parameters
eSpecifies the second addend.
Returns
The updated FVectorExpression instance self.

◆ __iadd__() [2/2]

FVectorExpression CDPL.Math.FVectorExpression.__iadd__ ( ConstFVectorExpression  e)

Performs the in-place addition operation self += e.

Parameters
eSpecifies the second addend.
Returns
The updated FVectorExpression instance self.

◆ __isub__() [1/2]

FVectorExpression CDPL.Math.FVectorExpression.__isub__ ( FVectorExpression  e)

Performs the in-place subtraction operation self -= e.

Parameters
eSpecifies the subtrahend.
Returns
The updated FVectorExpression instance self.

◆ __isub__() [2/2]

FVectorExpression CDPL.Math.FVectorExpression.__isub__ ( ConstFVectorExpression  e)

Performs the in-place subtraction operation self -= e.

Parameters
eSpecifies the subtrahend.
Returns
The updated FVectorExpression instance self.

◆ __imul__()

FVectorExpression CDPL.Math.FVectorExpression.__imul__ ( float  t)

Performs the in-place multiplication operation self *= t.

Parameters
tSpecifies the multiplier.
Returns
The updated FVectorExpression instance self.

◆ __idiv__()

FVectorExpression CDPL.Math.FVectorExpression.__idiv__ ( float  t)

Performs the in-place division operation self /= t.

Parameters
tSpecifies the divisor.
Returns
The updated FVectorExpression instance self.

◆ __itruediv__()

FVectorExpression CDPL.Math.FVectorExpression.__itruediv__ ( float  t)
Parameters
t
Returns