Click or drag to resize

ComplexMatrix Constructor (Int32, Int32, Complex)

Initializes a new instance with the specified row and column dimensions. All elements of the matrix will be set to the provided value.

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(
	int rowDimension,
	int columnDimension,
	Complex elementValue
)

Parameters

rowDimension
Type: SystemInt32
The number of rows in the matrix.
columnDimension
Type: SystemInt32
The number of columns in the matrix.
elementValue
Type: AGI.Foundation.CoordinatesComplex
The value that all elements in the matrix will be set to.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException Thrown when rowDimension or columnDimension are less than zero.
See Also