ComplexMatrix Constructor (Complex, Int32, Int32) |
Construct a matrix without copying the given array.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public ComplexMatrix(
Complex[][] array,
int rowDimension,
int columnDimension
)
Public Sub New (
array As Complex()(),
rowDimension As Integer,
columnDimension As Integer
)
public:
ComplexMatrix(
array<array<Complex>^>^ array,
int rowDimension,
int columnDimension
)
new :
array : Complex[][] *
rowDimension : int *
columnDimension : int -> ComplexMatrix
Parameters
- array
- Type: AGI.Foundation.CoordinatesComplex
Rectangular two-dimensional array of Complex numbers. - rowDimension
- Type: SystemInt32
Number of rows, this must match the first dimension of the given array. - columnDimension
- Type: SystemInt32
Number of columns, this must match the second dimensions of the given array.
Exceptions See Also