RectangularMatrix(Int32, Int32) Constructor
Initializes a rectangular matrix with the given dimensions.
Namespace: Meta.Numerics.MatricesAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public RectangularMatrix(
int rowCount,
int columnCount
)
Public Sub New (
rowCount As Integer,
columnCount As Integer
)
public:
RectangularMatrix(
int rowCount,
int columnCount
)
new :
rowCount : int *
columnCount : int -> RectangularMatrix
Parameters
- rowCount Int32
- The number of rows.
- columnCount Int32
- The number of columns.