MatrixInt::CopyVec Method

Overload List

#SignatureDescription
1TMtxInt *CopyVec(TVecInt *Vec, int NrRows) const;Copies values from vector to a matrix.
2TMtxInt *CopyVec(TVecInt *Vec, int VecIndex, int Len, int Row, int Col) const;Copy Vec elements [VecIndex]..[VecIndex+Len-1] to the calling matrix elements starting with [Row,Col].

Overload 1: TMtxInt *CopyVec(TVecInt *Vec, int NrRows) const;

Copies values from vector to a matrix.

#NameTypeDescription
1VecTVecInt *
2NrRowsint
Remarks:

Copy all Vec elements to the calling matrix. Set the calling matrix MatrixInt::Rows property to NrRows. Set the calling matrix MatrixInt::Cols property to Vec.Length div NrRow (Length = Rows*Cols). The calling matrix TMtxVecInt::IntPrecision property is adjusted automatically. An exception is raised if Vec.Length mod NrRows <> 0.

See Also: MatrixInt::Copy, TVec::CopyMtx
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler

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

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

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

An exception is raised if TMtxVecBase::ConditionCheck is true and bounds are overrun or if TMtxVecInt::IntPrecision properties of the calling matrix and Vec do not match.

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