共用方式為


Complex.Divide 方法

定義

將指定的數位除以另一個指定的數位,其中至少有一個是複數,另一個可能是雙精確度實數。

多載

Divide(Double, Complex)

將一個雙精確度實數除以複數,並傳回結果。

Divide(Complex, Double)

將一個複數除以雙精確度實數,並傳回結果。

Divide(Complex, Complex)

將一個複數除以另一個複數,並傳回結果。

範例

下列範例會將複數除以複數陣列中的每個元素。

using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      Complex c1 = new Complex(1.2, 2.3);
      Complex[] values = { new Complex(1.2, 2.3),
                           new Complex(0.5, 0.75),
                           new Complex(3.0, -5.0) };
      foreach (Complex c2 in values)
         Console.WriteLine("{0} / {1} = {2:N2}", c1, c2,
                           Complex.Divide(c1, c2));
   }
}
// The example displays the following output:
//       (1.2, 2.3) / (1.2, 2.3) = (1.00, 0.00)
//       (1.2, 2.3) / (0.5, 0.75) = (2.86, 0.31)
//       (1.2, 2.3) / (3, -5) = (-0.23, 0.38)
open System.Numerics

let c1 = Complex(1.2, 2.3);
let values = 
    [ Complex(1.2, 2.3)
      Complex(0.5, 0.75)
      Complex(3.0, -5.0) ]

for c2 in values do
    printfn $"{c1} / {c2} = {Complex.Divide(c1, c2):N2}"
// The example displays the following output:
//       (1.2, 2.3) / (1.2, 2.3) = (1.00, 0.00)
//       (1.2, 2.3) / (0.5, 0.75) = (2.86, 0.31)
//       (1.2, 2.3) / (3, -5) = (-0.23, 0.38)
Imports System.Numerics

Module Example
   Public Sub Main()
      Dim c1 As New Complex(1.2, 2.3)
      Dim values() As Complex = { New Complex(1.2, 2.3), 
                                  New Complex(0.5, 0.75), 
                                  New Complex(3.0, -5.0) }
      For Each c2 In values
         Console.WriteLine("{0} / {1} = {2:N2}", c1, c2, 
                           Complex.Divide(c1, c2))
      Next
   End Sub
End Module
' The example displays the following output:
'       (1.2, 2.3) / (1.2, 2.3) = (1.00, 0.00)
'       (1.2, 2.3) / (0.5, 0.75) = (2.86, 0.31)
'       (1.2, 2.3) / (3, -5) = (-0.23, 0.38)

備註

Divide 方法允許執行涉及複數的除法運算。

如果商數的計算會導致實數或虛數位件溢位,該元件的值會 Double.PositiveInfinityDouble.NegativeInfinity

不支援自定義運算子的語言可以使用 Divide 方法。 其行為與使用除法運算符的除法相同。

接收一個雙精度浮點數的 Divide 方法比接收兩個複數的方法更有效率。

Divide(Double, Complex)

來源:
Complex.cs
來源:
Complex.cs
來源:
Complex.cs

將一個雙精確度實數除以複數,並傳回結果。

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

參數

dividend
Double

要除法的雙精確度實數。

divisor
Complex

要除以的複數。

傳回

除數的商數。

備註

實數的除法(可視為複數 a + 0i)和複數(c + di)採用下列形式:

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

另請參閱

適用於

Divide(Complex, Double)

來源:
Complex.cs
來源:
Complex.cs
來源:
Complex.cs

將一個複數除以雙精確度實數,並傳回結果。

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

參數

dividend
Complex

要除法的複數。

divisor
Double

要除以的雙精確度實數。

傳回

除數的商數。

備註

複數(a + bi)和實數的除法(可視為複數 c + 0i)採用下列形式:

$\frac{ac}{c^2} + (\frac{bc}{c^2})i$

另請參閱

適用於

Divide(Complex, Complex)

來源:
Complex.cs
來源:
Complex.cs
來源:
Complex.cs

將一個複數除以另一個複數,並傳回結果。

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

參數

dividend
Complex

要除法的複數。

divisor
Complex

要除以的複數。

傳回

除數的商數。

備註

複數 a + bi除以第二個複數 c + di,採用下列形式:

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

另請參閱

適用於