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

Public Member Functions

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

Additional Inherited Members

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

Member Function Documentation

◆ swap()

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

◆ assign() [1/6]

LMatrixExpression CDPL.Math.LMatrixExpression.assign ( LMatrixExpression  e)

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

Parameters
eThe LMatrixExpression instance to copy.
Returns
self

◆ assign() [2/6]

LMatrixExpression CDPL.Math.LMatrixExpression.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]

LMatrixExpression CDPL.Math.LMatrixExpression.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]

LMatrixExpression CDPL.Math.LMatrixExpression.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]

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

◆ __setitem__()

None CDPL.Math.LMatrixExpression.__setitem__ ( tuple  ij,
int  v 
)
Parameters
ij
v

◆ __iadd__() [1/2]

LMatrixExpression CDPL.Math.LMatrixExpression.__iadd__ ( LMatrixExpression  e)

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

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

◆ __iadd__() [2/2]

LMatrixExpression CDPL.Math.LMatrixExpression.__iadd__ ( ConstLMatrixExpression  e)

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

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

◆ __isub__() [1/2]

LMatrixExpression CDPL.Math.LMatrixExpression.__isub__ ( LMatrixExpression  e)

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

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

◆ __isub__() [2/2]

LMatrixExpression CDPL.Math.LMatrixExpression.__isub__ ( ConstLMatrixExpression  e)

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

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

◆ __imul__()

LMatrixExpression CDPL.Math.LMatrixExpression.__imul__ ( int  t)

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

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

◆ __idiv__()

LMatrixExpression CDPL.Math.LMatrixExpression.__idiv__ ( int  t)

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

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

◆ __itruediv__()

LMatrixExpression CDPL.Math.LMatrixExpression.__itruediv__ ( int  t)
Parameters
t
Returns