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

OfRowVectors() public static method

Create a new dense matrix as a copy of the given row vectors. This new matrix will be independent from the vectors. A new memory block will be allocated for storing the matrix.
public static OfRowVectors ( IEnumerable rows ) : DenseMatrix
rows IEnumerable
return DenseMatrix
        public static DenseMatrix OfRowVectors(IEnumerable<Vector<float>> rows)
        {
            return new DenseMatrix(DenseColumnMajorMatrixStorage<float>.OfRowVectors(rows.Select(r => r.Storage).ToArray()));
        }

Same methods

DenseMatrix::OfRowVectors ( ) : DenseMatrix