Matrix<T>.ElementwiseMultiplyInPlace(Matrix<T>) Method

Multiplies this matrix in-place element-wise by another matrix.

Definition

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

Parameters

matrix  Matrix<T>
A matrix.

Return Value

Matrix<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