Click or drag to resize

ComplexMatrixSubtract 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: 24.1.418.0 (24.1.418.0)
Syntax
public static ComplexMatrix Subtract(
	ComplexMatrix minuend,
	ComplexMatrix subtrahend
)

Parameters

minuend
Type: AGI.Foundation.CoordinatesComplexMatrix
The Matrix being subtracted from.
subtrahend
Type: AGI.Foundation.CoordinatesComplexMatrix
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