Click or drag to resize

ComplexMatrix.SubtractAssign Method

Assigns the elements of difference to the element-wise subtraction of minuend by subtrahend.

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 SubtractAssign(
	ComplexMatrix minuend,
	ComplexMatrix subtrahend,
	ComplexMatrix difference
)

Parameters

minuend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix being subtracted from.
subtrahend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix to subtract.
difference
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix to use to store the result of the operation.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when minuend, subtrahend, or difference is null.
InvalidOperationException Thrown when the dimensions of difference do not match the dimensions of minuend or subtrahend.
See Also