Constructs a new dense matrix with the specified
number of rows and columns
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public DenseMatrix(
int rowCount,
int columnCount,
MatrixElementOrder elementOrder
)
Public Sub New (
rowCount As Integer,
columnCount As Integer,
elementOrder As MatrixElementOrder
)
public:
DenseMatrix(
int rowCount,
int columnCount,
MatrixElementOrder elementOrder
)
new :
rowCount : int *
columnCount : int *
elementOrder : MatrixElementOrder -> DenseMatrix
Parameters
- rowCount
- Type: SystemInt32
The number of rows in the new
matrix. - columnCount
- Type: SystemInt32
The number of columns in the new
matrix. - elementOrder
- Type: Extreme.MathematicsMatrixElementOrder
A MatrixElementOrder
value that specifies the order of the elements in
the storage array.
If elementOrder is omitted, elements are
stored in column-major order.
Numerical Libraries
Supported in: 5.x, 4.x
Reference