Divides a complex number by another.
Namespace: Extreme.Mathematics.GenericAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public static Complex<T> Divide(
Complex<T> z1,
Complex<T> z2
)
Public Shared Function Divide (
z1 As Complex(Of T),
z2 As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> Divide(
Complex<T> z1,
Complex<T> z2
)
static member Divide :
z1 : Complex<'T> *
z2 : Complex<'T> -> Complex<'T>
Parameters
- z1
- Type: Extreme.Mathematics.GenericComplexT
The first complex number. - z2
- Type: Extreme.Mathematics.GenericComplexT
The second complex number.
Return Value
Type:
ComplexTA complex number that equals the first
operand divided by the second.
This method is equivalent to the
Division(ComplexT, ComplexT). It is provided for languages
that do not support operator overloading.
Numerical Libraries
Supported in: 4.x
Reference