Subtracts a real number from a complex number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> Subtract(
Complex<T> z,
T a
)
Public Shared Function Subtract (
z As Complex(Of T),
a As T
) As Complex(Of T)
public:
static Complex<T> Subtract(
Complex<T> z,
T a
)
static member Subtract :
z : Complex<'T> *
a : 'T -> Complex<'T>
Parameters
- z
- Type: Extreme.MathematicsComplexT
The complex number. - a
- Type: T
The real number.
Return Value
Type:
ComplexTA complex number that equals the complex
number minus the real number.
This method is equivalent to the
Subtraction(ComplexT, T). It is provided for languages
that do not support operator overloading.
Reference