ComplexConjugateSignalMatrix<T>.ElementwiseMultiplyInPlace Method

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

Definition

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

Parameters

matrix  Matrix<Complex<T>>
A complex matrix.

Return Value

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

Exceptions

ArgumentNullExceptionmatrix is null.
DimensionMismatchException The length of matrix does not equal the length of this instance.

See Also