Complex.Multiply(Complex, Complex) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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$