Click or drag to resize

ComplexMatrixMultiply Method (Complex)

Returns the result of the multiplication of this matrix and a vector.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public Complex[] Multiply(
	Complex[] vector
)

Parameters

vector
Type: AGI.Foundation.CoordinatesComplex
The vector to be multiplied.

Return Value

Type: Complex
The resultant vector.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when vector is .
InvalidOperationException Thrown when the length of vector does not match the column dimension of the this ComplexMatrix.
See Also