Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx *MulDiagRight(TVec *DiagMtx); | Multiply matrix with diagonal matrix from the right. |
| 2 | TMtx *MulDiagRight(TMtx *Mtx, TVec *DiagMtx); | Multiply matrix with diagonal matrix from the right. |
Overload 1: TMtx *MulDiagRight(TVec *DiagMtx);
Multiply matrix with diagonal matrix from the right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | DiagMtx | TVec * |
Remarks:
DiagMtx contains the values of the main diagional of the diagonal matrix. Other values of the DiagMtx matrix are assumed to be zero. DiagMtx.Length must be equal to Self.Cols. This operation is the same as calling TMtx.ScaleCols.
Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler
Overload 2: TMtx *MulDiagRight(TMtx *Mtx, TVec *DiagMtx);
Multiply matrix with diagonal matrix from the right.
Remarks:
DiagMtx contains the values of the main diagional of the diagonal matrix. Other values of the DiagMtx matrix are assumed to be zero. DiagMtx.Length must be equal to Self.Cols. This operation is the same as calling TMtx.ScaleCols.
Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler