Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt *MulElem(TMtxInt *Mtx) const; | Matrix array multiplication. |
| 2 | TMtxInt *MulElem(TMtxInt *Mtx1, TMtxInt *Mtx2) const; | Multiplies elements in Mtx1 matrix with the elements in Mtx2 matrix (array multiplication) and stores the results in calling matrix. |
Overload 1: TMtxInt *MulElem(TMtxInt *Mtx) const;
Matrix array multiplication.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtxInt * |
Remarks:
Multiplies elements in Mtx matrix with the elements in the calling matrix (array multiplication) and stores the results in calling matrix. The MatrixInt::Rows, MatrixInt::Cols and TMtxVecInt::IntPrecision properties of both matrices must match, otherwise an exception is raised.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxInt *MulElem(TMtxInt *Mtx1, TMtxInt *Mtx2) const;
Multiplies elements in Mtx1 matrix with the elements in Mtx2 matrix (array multiplication) and stores the results in calling matrix.
Remarks:
The MatrixInt::Rows, MatrixInt::Cols and TMtxVecInt::IntPrecision properties of calling matrix are set implicitly to match those of Mtx1 and Mtx2 matrices. Mtx1 and Mtx2 Rows, Cols, and Complex properties must be the same, otherwise an excetion is raised. raised.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler