MtxDataset.ColumnsToMtx Method

void ColumnsToMtx(TMtx dst, Boolean transpose)

Copies values from all VecColumns to specified matrix.

#NameDescription
1dstDestination matrix.
2transposeIf true, perform copy AND transpose operation.

Result: stored in self (calling object)

Remarks:

Depending on transpose value constructs a matrix by concating all vectors horizontally or vertically.

Examples
Matrix m = new Matrix(0,0);
mtxDataSet1.ColumnsToMtx(m,false);
// m stores VeColumns[0].Vector,VecColumn[1].Vector, ... columnwise.