Complex.Divide(Complex, Complex) Metod

Definition

Delar upp ett komplext tal med ett annat och returnerar resultatet.

public:
 static System::Numerics::Complex Divide(System::Numerics::Complex dividend, System::Numerics::Complex divisor);
public static System.Numerics.Complex Divide(System.Numerics.Complex dividend, System.Numerics.Complex divisor);
static member Divide : System.Numerics.Complex * System.Numerics.Complex -> System.Numerics.Complex
Public Shared Function Divide (dividend As Complex, divisor As Complex) As Complex

Parametrar

dividend
Complex

Det komplexa tal som ska delas.

divisor
Complex

Det komplexa tal som ska divideras med.

Returer

Uppdelningens kvot.

Kommentarer

Divisionen av ett komplext tal, a + bi, med ett andra komplext tal, c + di, har följande form:

$\frac{ac + bd}{c^2 + d^2} + (\frac{bc - ad}{c^2 + d^2})i$

Gäller för

Se även