Click or drag to resize

ComplexMatrix.Multiply 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: 25.1.421.0 (25.1.421.0)
Syntax
public Complex[] Multiply(
	Complex[] vector
)

Parameters

vector
Type:AGI.Foundation.Coordinates.Complex[]
The vector to be multiplied.

Return Value

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