You are here: Symbol Reference > MtxExprInt Namespace > Classes > VectorInt Record > public > GetCol Method > VectorInt.GetCol Method (TMtxInt, integer)
MtxVec VCL
ContentsIndex
PreviousUpNext
VectorInt.GetCol Method (TMtxInt, integer)

Copies a column from matrix.

Pascal
function GetCol(const Mtx: TMtxInt; Col: integer): TVecInt; overload;

Copies the Col-th column from Mtx matrix to calling vector. The TMtxVecBase.Length and TMtxVecInt.IntPrecision properties of calling vector are adjusted automatically. An exception is raised if condition checking is enabled and Col is greater than Mtx.Cols-1.

var a: TVecInt; b: TMtxInt; begin CreateIt(a); CreateIt(b); try b.SetIt(2,2,[1,2, 3,4]); a.GetCol(b,0); // a now contains [1,3] finally FreeIt(a); FreeIt(b); end; end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!