Click or drag to resize

ComplexMatrix.ElementMultiplyAssign Method

Sets the product ComplexMatrix to equal the element-wise multiplication of the multiplicand times the multiplier.

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 void ElementMultiplyAssign(
	ComplexMatrix multiplicand,
	ComplexMatrix multiplier,
	ComplexMatrix product
)

Parameters

multiplicand
Type: AGI.Foundation.Coordinates.ComplexMatrix
The first ComplexMatrix to multiply.
multiplier
Type: AGI.Foundation.Coordinates.ComplexMatrix
The second ComplexMatrix to multiply.
product
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix to use to store the result of the operation.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when multiplicand, multiplier, or product is null.
InvalidOperationException Thrown when the dimensions of product do not match the dimensions of multiplicand or multiplier.
See Also