You are here: Symbol Reference > MtxExprInt Namespace > Classes > MatrixInt Record > public > SetCol Method > MatrixInt.SetCol Method (TMtxVecInt, integer)
MtxVec VCL
ContentsIndex
PreviousUpNext
MatrixInt.SetCol Method (TMtxVecInt, integer)

Copies values from vector to matrix column.

Pascal
function SetCol(const Vec: TMtxVecInt; Col: integer): TMtxInt; overload;

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

var A: TMtxInt; V: TVecInt; begin CreateIt(A); CreateIt(V); try A.Size(2,1,True); V.SetIt([1,2, 2,4]); // complex vector A.SetCol(V,0); finally FreeIt(V); FreeIt(A); end; end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!