MathNet.Numerics.LinearAlgebra.Single.DenseMatrix.OfRowArrays C# (CSharp) Method

OfRowArrays() public static method

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

Same methods

DenseMatrix::OfRowArrays ( IEnumerable rows ) : DenseMatrix