Returns the product of two complex numbers.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static Complex Multiply(
Complex left,
Complex right
)
Public Shared Function Multiply (
left As Complex,
right As Complex
) As Complex
public:
static Complex Multiply(
Complex left,
Complex right
)
static member Multiply :
left : Complex *
right : Complex -> Complex
Parameters
- left
- Type: AGI.Foundation.Coordinates.Complex
The first complex number to multiply. - right
- Type: AGI.Foundation.Coordinates.Complex
The second complex number to multiply.
Return Value
Type:
ComplexThe product of the left and right complex numbers.
See Also