Click or drag to resize

ComplexMatrixSubtractFrom 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: 24.1.418.0 (24.1.418.0)
Syntax
public ComplexMatrix SubtractFrom(
	ComplexMatrix minuend
)

Parameters

minuend
Type: AGI.Foundation.CoordinatesComplexMatrix
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 .
InvalidOperationException Thrown when the dimensions of minuend do not match the dimensions of this ComplexMatrix.
See Also