ComplexMatrix Constructor (Int32, Int32) | 
 
            Initializes a new instance with the specified row and column dimensions.
            All elements of the matrix will default to zero.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic ComplexMatrix(
	int rowDimension,
	int columnDimension
)
Public Sub New ( 
	rowDimension As Integer,
	columnDimension As Integer
)
public:
ComplexMatrix(
	int rowDimension, 
	int columnDimension
)
new : 
        rowDimension : int * 
        columnDimension : int -> ComplexMatrixParameters
- rowDimension
 - Type: SystemInt32
The number of rows in the matrix. - columnDimension
 - Type: SystemInt32
The number of columns in the matrix. 
Exceptions
See Also