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

DenseMatrix() public method

Create a new 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 row or column count is less than one.
public DenseMatrix ( int rows, int columns ) : System
rows int
columns int
return System
        public DenseMatrix(int rows, int columns)
            : this(new DenseColumnMajorMatrixStorage<float>(rows, columns))
        {
        }

Same methods

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