Click or drag to resize

ComplexMatrixSubtractAssign 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: 24.1.418.0 (24.1.418.0)
Syntax
public static void SubtractAssign(
	ComplexMatrix minuend,
	ComplexMatrix subtrahend,
	ComplexMatrix difference
)

Parameters

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