SparseCompressedColumnMatrix<T>.ElementwiseDivideInPlace Method

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

Definition

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

Parameters

matrix  Matrix<T>
A Matrix<T>.

Return Value

Matrix<T>
A reference to this instance.

Exceptions

ArgumentNullException

matrix 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