MathNet.Numerics.LinearAlgebra.Single.DenseMatrix.OfArray C# (CSharp) Метод

OfArray() публичный статический Метод

Create a new dense matrix as a copy of the given two-dimensional array. This new matrix will be independent from the provided array. A new memory block will be allocated for storing the matrix.
public static OfArray ( float array ) : DenseMatrix
array float
Результат DenseMatrix
        public static DenseMatrix OfArray(float[,] array)
        {
            return new DenseMatrix(DenseColumnMajorMatrixStorage<float>.OfArray(array));
        }