Subtracts the second complex number from the first.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Complex operator -(
	Complex z1,
	Complex z2
)
Public Shared Operator - ( _
	z1 As Complex, _
	z2 As Complex _
) As Complex
public:
static Complex operator -(
	Complex z1, 
	Complex z2
)

Parameters

z1
Complex
The first complex number.
z2
Complex
The second complex number.

Return Value

The difference of the complex numbers.

See Also