Meta.Numerics Library
Subtraction Operator
Meta.NumericsMeta.NumericsComplexSubtraction(Complex, Complex)
Subtracts the second complex number from the first.
Declaration Syntax
C#Visual BasicVisual C++F#
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
)
static let inline(-)
        z1:Complex * 
        z2:Complex  : Complex
Parameters
z1 (Complex)
The first complex number.
z2 (Complex)
The second complex number.
Return Value
The difference of the complex numbers.