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