Click or drag to resize

ComplexMatrix Constructor (Complex, Int32)

Initializes a new instance from a one-dimensional packed array.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public ComplexMatrix(
	Complex[] elements,
	int rowDimension
)

Parameters

elements
Type: AGI.Foundation.CoordinatesComplex
A one-dimensional array containing the values of all of the elements.
rowDimension
Type: SystemInt32
The number of rows in the matrix.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException Thrown when rowDimension is less than zero.
ArgumentException Thrown when the length of elements is not a multiple of the column dimension.
ArgumentNullException Thrown when elements is .
See Also