RectangularMatrix Constructor (Int32, Int32) |
Initializes a rectangular matrix with the given dimensions.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
- Type: SystemInt32
The number of rows. - columnCount
- Type: SystemInt32
The number of columns.
Exceptions See Also