Matrix<T>.ElementwiseDivideInPlace Method

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

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual Matrix<T> ElementwiseDivideInPlace(
	Matrix<T> matrix
)

Parameters

matrix  Matrix<T>
A matrix.

Return Value

Matrix<T>
A reference to this instance.

Exceptions

ArgumentNullException

matrix is null.

DimensionMismatchException

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

See Also