MatrixInt::SetCol Method

Overload List

#SignatureDescription
1TMtxInt *SetCol(TMtxVecInt *Vec, int Col) const;Copies values from vector to matrix column.
2TMtxInt *SetCol(TMtxVecInt *Vec, int VecIndex, int Row, int Col, int Len) const;Copy vector Vec elements [VecIndex]..[VecIndex+Len-1] to the calling matrix elements [Row,Col]..[Row+Len-1,Col].

Overload 1: TMtxInt *SetCol(TMtxVecInt *Vec, int Col) const;

Copies values from vector to matrix column.

#NameTypeDescription
1VecTMtxVecInt *
2Colint
Remarks:

Copy all Vec elements to the calling matrix Col column. An exception is raised, if array bounds are overrun.

See Also: MatrixInt::SetRow
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 2: TMtxInt *SetCol(TMtxVecInt *Vec, int VecIndex, int Row, int Col, int Len) const;

Copy vector Vec elements [VecIndex]..[VecIndex+Len-1] to the calling matrix elements [Row,Col]..[Row+Len-1,Col].

#NameTypeDescription
1VecTMtxVecInt *
2VecIndexint
3Rowint
4Colint
5Lenint
Remarks:

An exception is raised if condition checking is enabled and array bounds are overrun.

Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler