Matrix::ScaleCols Method

Overload List

#SignatureDescription
1TMtx *ScaleCols(TVec *Src) const;Scale all matrix columns with values from Src.
2TMtx *ScaleCols(TMtx *Mtx, TVec *Src) const;Scale all Mtx matrix columns with values from Src.

Overload 1: TMtx *ScaleCols(TVec *Src) const;

Scale all matrix columns with values from Src.

#NameTypeDescription
1SrcTVec *
Remarks:

Src.Length must be equal to Self.Cols.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler

Overload 2: TMtx *ScaleCols(TMtx *Mtx, TVec *Src) const;

Scale all Mtx matrix columns with values from Src.

#NameTypeDescription
1MtxTMtx *
2SrcTVec *
Remarks:

Src.Length must be equal to Mtx.Cols. The result is stored to the calling matrix.

Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler