Divides a complex number by a real number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> operator /(
Complex<T> z,
T a
)
Public Shared Operator / (
z As Complex(Of T),
a As T
) As Complex(Of T)
public:
static Complex<T> operator /(
Complex<T> z,
T a
)
static let inline (/)
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 divided by the real number.
If you are using a language that does not
support operator overloading, use the
Divide(ComplexT, T) method instead.
This method requires that the operand type supports multiplication.
Reference