Constructs a new matrix with the specified
number of rows and columns
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static DenseMatrix<T> Create<T>(
int rowCount,
int columnCount
)
Public Shared Function Create(Of T) (
rowCount As Integer,
columnCount As Integer
) As DenseMatrix(Of T)
public:
generic<typename T>
static DenseMatrix<T>^ Create(
int rowCount,
int columnCount
)
static member Create :
rowCount : int *
columnCount : int -> DenseMatrix<'T>
Parameters
- rowCount
- Type: SystemInt32
The number of rows in the new
matrix. - columnCount
- Type: SystemInt32
The number of columns in the new
matrix.
Type Parameters
- T
Return Value
Type:
DenseMatrixTA
DenseMatrixT.
Reference