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

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Overridable Function ComponentwiseDivide ( _
	matrix As Matrix _
) As Matrix
C#
public virtual Matrix ComponentwiseDivide (
	Matrix matrix
)
C++
public:
virtual Matrix^ ComponentwiseDivide (
	Matrix^ matrix
)

Parameters

matrix (Extreme.Mathematics.LinearAlgebra.Matrix)
A Matrix.

Return Value

A reference to this instance.

Exceptions

ExceptionCondition
ArgumentNullExceptionmatrix is nullNothingnullptr.
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.