Matrix |
| Name | Description | |
|---|---|---|
| ToMatrixT(MatrixWrapperStructForColumnMajorOrderLinearArrayT) | Wraps a linear array (column major order) into a read-write matrix. The array is packed in column major order, i.e. the first elements belong to the first column of the matrix. | |
| ToMatrixT(MatrixWrapperStructForLeftSpineJaggedArrayT) | Converts a wrapped left spine jagged array to a matrix. | |
| ToMatrixT(MatrixWrapperStructForTopSpineJaggedArrayT) | Constructs an RE matrix from an array of double vectors. Attention! The double vectors (the second) dimensions are here the columns (!) of the matrix. The data is not copied. | |
| ToMatrixT(T) | Converts a 2D array of type T[,] to a read-write matrix of type IMatrix{T}. |