|
None | swap (DMatrixExpression e) |
|
DMatrixExpression | assign (DMatrixExpression e) |
| Replaces the current state of self with a copy of the state of the DMatrixExpression instance e. More...
|
|
DMatrixExpression | assign (ConstFMatrixExpression e) |
| Replaces the current state of self with a copy of the state of the ConstFMatrixExpression instance e. More...
|
|
DMatrixExpression | assign (ConstDMatrixExpression e) |
| Replaces the current state of self with a copy of the state of the ConstDMatrixExpression instance e. More...
|
|
DMatrixExpression | assign (ConstLMatrixExpression e) |
| Replaces the current state of self with a copy of the state of the ConstLMatrixExpression instance e. More...
|
|
DMatrixExpression | 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) |
|
DMatrixExpression | __iadd__ (DMatrixExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
DMatrixExpression | __iadd__ (ConstDMatrixExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
DMatrixExpression | __isub__ (DMatrixExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|
DMatrixExpression | __isub__ (ConstDMatrixExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|
DMatrixExpression | __imul__ (float t) |
| Performs the in-place multiplication operation self *= t . More...
|
|
DMatrixExpression | __idiv__ (float t) |
| Performs the in-place division operation self /= t . More...
|
|
DMatrixExpression | __itruediv__ (float t) |
|
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__ (ConstDMatrixExpression e) |
| Returns the result of the comparison operation self == e . More...
|
|
bool | __ne__ (ConstDMatrixExpression e) |
| Returns the result of the comparison operation self != e . More...
|
|
str | __str__ () |
| Returns a string representation of the ConstDMatrixExpression instance. More...
|
|
ConstDMatrixExpression | __pos__ () |
|
ConstDMatrixExpression | __neg__ () |
|
ConstDMatrixExpression | __add__ (ConstDMatrixExpression e) |
| Returns the result of the addition operation self + e . More...
|
|
ConstDMatrixExpression | __sub__ (ConstDMatrixExpression e) |
| Returns the result of the subtraction operation self - e . More...
|
|
ConstDMatrixExpression | __mul__ (float t) |
| Returns the result of the multiplication operation self * t . More...
|
|
ConstDMatrixExpression | __mul__ (ConstDMatrixExpression e) |
| Returns the result of the multiplication operation self * e . More...
|
|
ConstDVectorExpression | __mul__ (ConstDVectorExpression e) |
| Returns the result of the multiplication operation self * e . More...
|
|
ConstDMatrixExpression | __div__ (float t) |
| Returns the result of the division operation self / t . More...
|
|
ConstDMatrixExpression | __truediv__ (float t) |
|
ConstDMatrixExpression | __rmul__ (float t) |
|