MathNet.Numerics.LinearAlgebra.Double.DenseMatrix.OfRowArrays C# (CSharp) Méthode

OfRowArrays() public static méthode

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
Résultat DenseMatrix
        public static DenseMatrix OfRowArrays(params double[][] rows)
        {
            return new DenseMatrix(DenseColumnMajorMatrixStorage<double>.OfRowArrays(rows));
        }

Same methods

DenseMatrix::OfRowArrays ( IEnumerable rows ) : DenseMatrix