Click or drag to resize

ComplexColumnVectorMultiply Operator (AnyRectangularMatrix, ComplexColumnVector)

Multiplies a real matrix by a complex column vector.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static ComplexColumnVector operator *(
	AnyRectangularMatrix A,
	ComplexColumnVector v
)

Parameters

A
Type: Meta.Numerics.MatricesAnyRectangularMatrix
The real matrix.
v
Type: Meta.Numerics.MatricesComplexColumnVector
The complex column vector.

Return Value

Type: ComplexColumnVector
The product Av.
Exceptions
ExceptionCondition
ArgumentNullExceptionA or v is null.
DimensionMismatchExceptionThe column count of A does not equal the dimension of v.
See Also