Divides a real number by a DoubleComplex number.
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function Divide ( _ a As Double, _ z As DoubleComplex _ ) As DoubleComplex |
| C# |
|---|
public static DoubleComplex Divide ( double a, DoubleComplex z ) |
| C++ |
|---|
public: static DoubleComplex Divide ( double a, DoubleComplex z ) |
Parameters
- a (System.Double)
- The real number.
- z (Extreme.Mathematics.DoubleComplex)
- The DoubleComplex number.
Return Value
A DoubleComplex number that equals the real number divided by the complex number.
Remarks
This method is equivalent to the
Division(Double, DoubleComplex). It is provided for languages
that do not support operator overloading.