Subtracts two complex numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> Subtract(
Complex<T> z1,
Complex<T> z2
)
Public Shared Function Subtract (
z1 As Complex(Of T),
z2 As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> Subtract(
Complex<T> z1,
Complex<T> z2
)
static member Subtract :
z1 : Complex<'T> *
z2 : Complex<'T> -> Complex<'T>
Parameters
- z1
- Type: Extreme.MathematicsComplexT
The first complex number. - z2
- Type: Extreme.MathematicsComplexT
The second complex number.
Return Value
Type:
ComplexTA complex number that is the difference
between the two operands.
This method is equivalent to the
Subtraction(ComplexT, ComplexT). It is provided for languages
that do not support operator overloading.
Reference