MtxExprInt.GetCol Method

function GetCol(const Mtx: TMtxInt; Col: Integer): VectorInt;

Copies a column from matrix.

#NameTypeDescription
1MtxTMtxInt
2ColInteger

Returns: VectorInt

Examples
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;