Divides a complex number by another.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> operator /(
Complex<T> z1,
Complex<T> z2
)
Public Shared Operator / (
z1 As Complex(Of T),
z2 As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> operator /(
Complex<T> z1,
Complex<T> z2
)
static let inline (/)
z1 : Complex<'T> *
z2 : Complex<'T> : Complex<'T>
Parameters
- z1
- Type: Extreme.MathematicsComplexT
The first complex number. - z2
- Type: Extreme.MathematicsComplexT
The second complex number.
Return Value
Type:
ComplexTA complex number that equals the first
operand divided by the second.
If you are using a language that does not
support operator overloading, use the
Divide(ComplexT, ComplexT) method instead.
This method requires that the operand type supports multiplication.
Reference