Matrix Constructor (Int32, Int32) | 
 
            Initializes a new instance with the specified dimensions.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxprotected Matrix(
	int rowDimension,
	int columnDimension
)
Protected Sub New ( 
	rowDimension As Integer,
	columnDimension As Integer
)
protected:
Matrix(
	int rowDimension, 
	int columnDimension
)
new : 
        rowDimension : int * 
        columnDimension : int -> MatrixParameters
- rowDimension
 - Type: SystemInt32
The number of rows in the new matrix. - columnDimension
 - Type: SystemInt32
The number of columns in the new matrix. 
Exceptions
See Also