Matrix<T>.ComponentwiseMultiply Method

Note: This API is now obsolete.
Multiplies the elements of this instance by the corresponding elements of another matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
[ObsoleteAttribute("Use the ElementwiseMultiplyInPlace method instead.")]
public Matrix<T> ComponentwiseMultiply(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
A Matrix<T>.

Return Value

Matrix<T>
A reference to this instance.

Exceptions

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

-or-

The number of columns of matrix does not equal the number of columns of this instance.

See Also