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

Public Member Functions

None swap (FMatrixExpression e)
 
FMatrixExpression assign (FMatrixExpression e)
 Replaces the current state of self with a copy of the state of the FMatrixExpression instance e. More...
 
FMatrixExpression assign (ConstFMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More...
 
FMatrixExpression assign (ConstDMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More...
 
FMatrixExpression assign (ConstLMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More...
 
FMatrixExpression assign (ConstULMatrixExpression e)
 Replaces the current state of self with a copy of the state of the ConstULMatrixExpression 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, int j, float v)
 
None __setitem__ (tuple ij, float v)
 
FMatrixExpression __iadd__ (FMatrixExpression e)
 Performs the in-place addition operation self += e. More...
 
FMatrixExpression __iadd__ (ConstFMatrixExpression e)
 Performs the in-place addition operation self += e. More...
 
FMatrixExpression __isub__ (FMatrixExpression e)
 Performs the in-place subtraction operation self -= e. More...
 
FMatrixExpression __isub__ (ConstFMatrixExpression e)
 Performs the in-place subtraction operation self -= e. More...
 
FMatrixExpression __imul__ (float t)
 Performs the in-place multiplication operation self *= t. More...
 
FMatrixExpression __idiv__ (float t)
 Performs the in-place division operation self /= t. More...
 
FMatrixExpression __itruediv__ (float t)
 
- Public Member Functions inherited from CDPL.Math.ConstFMatrixExpression
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
int getSize1 ()
 
int getSize2 ()
 
bool isEmpty ()
 
float getElement (int i, int j)
 
object toArray ()
 
float __call__ (int i, int j)
 
float __getitem__ (tuple ij)
 
int __len__ ()
 
bool __eq__ (ConstFMatrixExpression e)
 Returns the result of the comparison operation self == e. More...
 
bool __ne__ (ConstFMatrixExpression e)
 Returns the result of the comparison operation self != e. More...
 
str __str__ ()
 Returns a string representation of the ConstFMatrixExpression instance. More...
 
ConstFMatrixExpression __pos__ ()
 
ConstFMatrixExpression __neg__ ()
 
ConstFMatrixExpression __add__ (ConstFMatrixExpression e)
 Returns the result of the addition operation self + e. More...
 
ConstFMatrixExpression __sub__ (ConstFMatrixExpression e)
 Returns the result of the subtraction operation self - e. More...
 
ConstFMatrixExpression __mul__ (float t)
 Returns the result of the multiplication operation self * t. More...
 
ConstFMatrixExpression __mul__ (ConstFMatrixExpression e)
 Returns the result of the multiplication operation self * e. More...
 
ConstFVectorExpression __mul__ (ConstFVectorExpression e)
 Returns the result of the multiplication operation self * e. More...
 
ConstFMatrixExpression __div__ (float t)
 Returns the result of the division operation self / t. More...
 
ConstFMatrixExpression __truediv__ (float t)
 
ConstFMatrixExpression __rmul__ (float t)
 

Additional Inherited Members

- Properties inherited from CDPL.Math.ConstFMatrixExpression
 objectID = property(getObjectID)
 
 size1 = property(getSize1)
 
 size2 = property(getSize2)
 

Member Function Documentation

◆ swap()

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

◆ assign() [1/6]

FMatrixExpression CDPL.Math.FMatrixExpression.assign ( FMatrixExpression  e)

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

Parameters
eThe FMatrixExpression instance to copy.
Returns
self

◆ assign() [2/6]

FMatrixExpression CDPL.Math.FMatrixExpression.assign ( ConstFMatrixExpression  e)

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

Parameters
eThe ConstFMatrixExpression instance to copy.
Returns
self

◆ assign() [3/6]

FMatrixExpression CDPL.Math.FMatrixExpression.assign ( ConstDMatrixExpression  e)

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

Parameters
eThe ConstDMatrixExpression instance to copy.
Returns
self

◆ assign() [4/6]

FMatrixExpression CDPL.Math.FMatrixExpression.assign ( ConstLMatrixExpression  e)

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

Parameters
eThe ConstLMatrixExpression instance to copy.
Returns
self

◆ assign() [5/6]

FMatrixExpression CDPL.Math.FMatrixExpression.assign ( ConstULMatrixExpression  e)

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

Parameters
eThe ConstULMatrixExpression instance to copy.
Returns
self

◆ assign() [6/6]

None CDPL.Math.FMatrixExpression.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.FMatrixExpression.setElement ( int  i,
int  j,
float  v 
)
Parameters
i
j
v

◆ __setitem__()

None CDPL.Math.FMatrixExpression.__setitem__ ( tuple  ij,
float  v 
)
Parameters
ij
v

◆ __iadd__() [1/2]

FMatrixExpression CDPL.Math.FMatrixExpression.__iadd__ ( FMatrixExpression  e)

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

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

◆ __iadd__() [2/2]

FMatrixExpression CDPL.Math.FMatrixExpression.__iadd__ ( ConstFMatrixExpression  e)

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

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

◆ __isub__() [1/2]

FMatrixExpression CDPL.Math.FMatrixExpression.__isub__ ( FMatrixExpression  e)

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

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

◆ __isub__() [2/2]

FMatrixExpression CDPL.Math.FMatrixExpression.__isub__ ( ConstFMatrixExpression  e)

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

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

◆ __imul__()

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

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

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

◆ __idiv__()

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

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

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

◆ __itruediv__()

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