TMtx::SetZero Method

Overload List

#SignatureDescription
1TMtxVec *SetZero();Initializes object elements to zero.
2TMtxVec *SetZero(int Index, int Len);Initializes calling object elements [Index]..[Index+Len-1] to zero.
3TMtx *SetZero(int Row, int Col, int ToRow, int ToCol);Initializes matrix values to zero.

Overload 1: TMtxVec *SetZero();

Initializes object elements to zero.

See Also: TMtx::SetVal
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 2: TMtxVec *SetZero(int Index, int Len);

Initializes calling object elements [Index]..[Index+Len-1] to zero.

#NameTypeDescription
1Indexint
2Lenint
Remarks:

An exception is raised if array borders are overrun.

Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 3: TMtx *SetZero(int Row, int Col, int ToRow, int ToCol);

Initializes matrix values to zero.

#NameTypeDescription
1Rowint
2Colint
3ToRowint
4ToColint
Remarks:

Sets the calling matrix elements [Row,Col]..[ToRow,ToCol] to zero. An exception is raised if TMtx::ConditionCheck is true and array bounds are overrun.

Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler