Click or drag to resize

Matrix.ElementMultiply Method (Matrix, Matrix)

Creates a new Matrix which is the element-by-element multiplication 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: 25.1.421.0 (25.1.421.0)
Syntax
public static Matrix ElementMultiply(
	Matrix multiplicand,
	Matrix multiplier
)

Parameters

multiplicand
Type: AGI.Foundation.Coordinates.Matrix
The first Matrix to multiply.
multiplier
Type: AGI.Foundation.Coordinates.Matrix
The second Matrix to multiply.

Return Value

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