|
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) |
|
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) |
|