#include "smlxmatrix.h"
Class SMLXTmpMatrix is derived from SMLTMatrix. This class is used in intermediate matrix calculations.
SMLXTmpMatrix();
Default SMLXTmpMatrix object constructor.
No.
[top]
SMLLIBENTRY SMLXTmpMatrix& operator+(const SMLXMatrix& A);
Method is an overloaded operator-function. It computes sum of two matrices.
A - reference to constant object SMLXTmpMatrix which is added to this matrix.
Reference to object SMLXTmpMatrix which is sum of this matrix and matrix A.
[top]
SMLLIBENTRY SMLXTmpMatrix& operator-(const SMLXMatrix& A);
Method is an overloaded operator-function. It computes difference of two matrices.
A - reference to matrix subtracted from this one.
Reference to object SMLXTmpMatrix which is the difference of this matrix and matrix A.
[top]
SMLLIBENTRY SMLXTmpMatrix& operator*(float scale);
Method is an overloaded operator-function. It defines a standard operation of multiplication of matrix by number scale.
scale - multiplier.
Reference to SMLXTmpMatrix object which is equal to product of matrix and number scale.
[top]