Returns the product of two complex numbers.
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 left,
Complex right
)
Public Shared Operator * (
left As Complex,
right As Complex
) As Complex
public:
static Complex operator *(
Complex left,
Complex right
)
static let inline (*)
left : Complex *
right : Complex : Complex
Parameters
- left
- Type: AGI.Foundation.CoordinatesComplex
The first complex number to multiply. - right
- Type: AGI.Foundation.CoordinatesComplex
The second complex number to multiply.
Return Value
Type:
ComplexThe product of the complex numbers.
See Also