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

DenseMatrix() public method

Create a new square dense matrix with the given number of rows and columns. All cells of the matrix will be initialized to zero. Zero-length matrices are not supported.
If the order is less than one.
public DenseMatrix ( int order ) : System
order int
return System
        public DenseMatrix(int order)
            : this(new DenseColumnMajorMatrixStorage<float>(order, order))
        {
        }

Same methods

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