Wraps a MatrixView with m rows and n columns around the given array. For a given set of a, m, and n, the following must be true for a general matrix:
a.length >= m*n
For triangular and symmetric matrices, there are two constraints:
m == n a.length >= (n*n + n)/2
These conditions are only checked in non-release builds.
See Implementation
Wraps a MatrixView with m rows and n columns around the given array. For a given set of a, m, and n, the following must be true for a general matrix:
For triangular and symmetric matrices, there are two constraints:
These conditions are only checked in non-release builds.