Click or drag to resize

MatrixElementDivide Method (Matrix, Matrix)

Creates a new Matrix which is the element-by-element division of the two given matrices.

The most efficient operation to do this is chosen through double dispatch based on the concrete types of the given matrices.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static Matrix ElementDivide(
	Matrix dividend,
	Matrix divisor
)

Parameters

dividend
Type: AGI.Foundation.CoordinatesMatrix
The Matrix whose elements will form the numerators.
divisor
Type: AGI.Foundation.CoordinatesMatrix
The Matrix whose elements will form the denominators.

Return Value

Type: Matrix
A Matrix which equals the element division of the two given matrices.
See Also