Click or drag to resize

ComplexMatrix.SubtractFrom Method

Creates a ComplexMatrix whose elements have the values of the elements of this matrix subtracted by the elements of the given 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 ComplexMatrix SubtractFrom(
	ComplexMatrix minuend
)

Parameters

minuend
Type: AGI.Foundation.Coordinates.ComplexMatrix
The ComplexMatrix that will be subtracted by this matrix.

Return Value

Type: ComplexMatrix
A ComplexMatrix which is the subtraction of the given matrix and this matrix.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when minuend is null.
InvalidOperationException Thrown when the dimensions of minuend do not match the dimensions of this ComplexMatrix.
See Also