MathNet.Numerics.LinearAlgebra.Double.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 ( double array ) : DenseMatrix
array double
Результат DenseMatrix
        public static DenseMatrix OfArray(double[,] array)
        {
            return new DenseMatrix(DenseColumnMajorMatrixStorage<double>.OfArray(array));
        }