Click or drag to resize

ComplexMatrixElementMultiply Method (ComplexMatrix, ComplexMatrix)

Creates a new ComplexMatrix which is the element-by-element multiplication of the two 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 ComplexMatrix ElementMultiply(
	ComplexMatrix multiplicand,
	ComplexMatrix multiplier
)

Parameters

multiplicand
Type: AGI.Foundation.CoordinatesComplexMatrix
The first ComplexMatrix to multiply.
multiplier
Type: AGI.Foundation.CoordinatesComplexMatrix
The second ComplexMatrix to multiply.

Return Value

Type: ComplexMatrix
A ComplexMatrix which equals the element multiplication of the two given matrices.
Exceptions
ExceptionCondition
InvalidOperationException Thrown when the dimensions of multiplicand do not match the dimensions of multiplier.
See Also