DoubleMatrixSubtraction(Complex, DoubleMatrix) Operator

Determines the subtraction of a matrix from a scalar.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static ComplexMatrix operator -(
	Complex left,
	DoubleMatrix right
)

Parameters

left  Complex
The left operand.
right  DoubleMatrix
The right operand.

Return Value

ComplexMatrix
The result of subtracting right from left.

Remarks

Let LaTeX equation and LaTeX equation be the right number of rows and columns, respectively, and let its generic entry given by

LaTeX equation

The method returns a matrix having the same dimensions of right, whose generic entry is:

LaTeX equation

Exceptions

ArgumentNullExceptionright is null.

See Also