ComplexDivision Operator (Complex, Double) |
Divides a complex number by a real number.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static Complex operator /(
Complex z,
double a
)
Public Shared Operator / (
z As Complex,
a As Double
) As Complex
public:
static Complex operator /(
Complex z,
double a
)
static let inline (/)
z : Complex *
a : float : Complex
Parameters
- z
- Type: Meta.NumericsComplex
The complex dividend. - a
- Type: SystemDouble
The real divisor.
Return Value
Type:
ComplexThe quotient z / a.
See Also