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

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

Create a new dense matrix as a copy of the given row arrays. This new matrix will be independent from the arrays. A new memory block will be allocated for storing the matrix.
public static OfRowArrays ( ) : DenseMatrix
Результат DenseMatrix
        public static DenseMatrix OfRowArrays(params float[][] rows)
        {
            return new DenseMatrix(DenseColumnMajorMatrixStorage<float>.OfRowArrays(rows));
        }

Same methods

DenseMatrix::OfRowArrays ( IEnumerable rows ) : DenseMatrix