Matrix::ScaleRows Method

Overload List

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

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

Scale all matrix rows with values from Src.

#NameTypeDescription
1SrcTVec *
Remarks:

Src.Length must be equal to Self.Rows.

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

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

Scale all Mtx matrix rows with values from Src.

#NameTypeDescription
1MtxTMtx *
2SrcTVec *
Remarks:

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

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