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

DenseMatrix() public method

Create a new dense matrix straight from an initialized matrix storage instance. The storage is used directly without copying. Intended for advanced scenarios where you're working directly with storage for performance or interop reasons.
public DenseMatrix ( DenseColumnMajorMatrixStorage storage ) : System
storage DenseColumnMajorMatrixStorage
return System
        public DenseMatrix(DenseColumnMajorMatrixStorage<float> storage)
            : base(storage)
        {
            _rowCount = storage.RowCount;
            _columnCount = storage.ColumnCount;
            _values = storage.Data;
        }

Same methods

DenseMatrix::DenseMatrix ( int order ) : System
DenseMatrix::DenseMatrix ( int rows, int columns ) : System
DenseMatrix::DenseMatrix ( int rows, int columns, float storage ) : System