ComplexDivision Operator (Complex, Double) |
Divides one complex number by a scalar and returns the result.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Complex operator /(
Complex dividend,
double scalar
)
Public Shared Operator / (
dividend As Complex,
scalar As Double
) As Complex
public:
static Complex operator /(
Complex dividend,
double scalar
)
static let inline (/)
dividend : Complex *
scalar : float : Complex
Parameters
- dividend
- Type: AGI.Foundation.CoordinatesComplex
The complex number to be divided. - scalar
- Type: SystemDouble
The scalar to divisor.
Return Value
Type:
ComplexThe complex number that is the result of the division.
See Also