Click or drag to resize

ComplexMatrix.Subtract Method

Creates a ComplexMatrix whose elements have the values of the elements of the minuend matrix subtracted by the elements of the subtrahend matrix.

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

Parameters

minuend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The Matrix being subtracted from.
subtrahend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The Matrix to subtract.

Return Value

Type: ComplexMatrix
A Matrix which is the subtraction of the two given matrices.
Exceptions
ExceptionCondition
InvalidOperationException Thrown when the dimensions of minuend do not match the dimensions of subtrahend.
See Also