Complex.Multiply(Complex, Complex) Method

Definition

Returns the product of two complex numbers.

public:
 static System::Numerics::Complex Multiply(System::Numerics::Complex left, System::Numerics::Complex right);
public static System.Numerics.Complex Multiply(System.Numerics.Complex left, System.Numerics.Complex right);
static member Multiply : System.Numerics.Complex * System.Numerics.Complex -> System.Numerics.Complex
Public Shared Function Multiply (left As Complex, right As Complex) As Complex

Parameters

left
Complex

The first complex number to multiply.

right
Complex

The second complex number to multiply.

Returns

The product of the left and right parameters.

Remarks

The multiplication of a complex number, a + bi, and a second complex number, c + di, takes the following form:

$(ac - bd) + (ad + bc)i$

Applies to

See also