void ColumnsToMtx(TMtx dst, Boolean transpose)
Copies values from all VecColumns to specified matrix.
| # | Name | Description |
|---|---|---|
| 1 | dst | Destination matrix. |
| 2 | transpose | If 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.