MathNet.Numerics.LinearAlgebra.Single.DenseMatrix.DenseMatrix C# (CSharp) 메소드

DenseMatrix() 공개 메소드

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
리턴 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