ComplexConjugateSignalVector<T>.ElementwiseMultiplyInPlace Method

Definition

Namespace: Numerics.NET.SignalProcessing
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0

Overload List

ElementwiseMultiplyInPlace(Vector<Complex<T>>) Multiplies the components of this instance by the corresponding components of another vector.
ElementwiseMultiplyInPlace(Vector<T>, SparseElementwiseMode) Multiplies this vector in-place element-wise by another vector.

ElementwiseMultiplyInPlace(Vector<Complex<T>>)

Multiplies the components of this instance by the corresponding components of another vector.
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

ArgumentNullException

vector is null.

DimensionMismatchException

The length of vector does not equal the length of this instance.

See Also