ComplexConjugateSignalVector<T>.ElementwiseMultiplyInPlace Method

Multiplies the components of this instance by the corresponding components of another vector.

Definition

Namespace: Extreme.Mathematics.SignalProcessing
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public override Vector<Complex<T>> ElementwiseMultiplyInPlace(
	Vector<Complex<T>> vector
)

Parameters

vector  Vector<Complex<T>>
A complex vector.

Return Value

Vector<Complex<T>>
A reference to this instance.

Exceptions

ArgumentNullExceptionvector is null.
DimensionMismatchException The length of vector does not equal the length of this instance.

See Also