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

Same methods

DenseMatrix::OfRowArrays ( ) : DenseMatrix