Complex.Divide メソッド

定義

指定した数値を別の指定された数値で除算します。少なくとも 1 つは複素数で、もう 1 つは倍精度実数になります。

オーバーロード

Divide(Double, Complex)

1 つの倍精度実数を複素数で除算し、結果を返します。

Divide(Complex, Double)

1 つの複素数を倍精度実数で除算し、結果を返します。

Divide(Complex, Complex)

1 つの複素数を別の複素数で除算し、結果を返します。

次の例では、複素数を複素数の配列内の各要素で除算します。

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.PositiveInfinity または Double.NegativeInfinity

Divide メソッドは、カスタム演算子をサポートしていない言語で使用できます。 その動作は、除算演算子を使用した除算と同じです。

1 つの double を受け取る Divide メソッドは、2 つの複素数を受け取るメソッドよりも効率的です。

Divide(Double, Complex)

ソース:
Complex.cs
ソース:
Complex.cs
ソース:
Complex.cs

1 つの倍精度実数を複素数で除算し、結果を返します。

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

1 つの複素数を倍精度実数で除算し、結果を返します。

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

1 つの複素数を別の複素数で除算し、結果を返します。

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) を 2 番目の複素数 (c + di) で除算すると、次の形式になります。

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

こちらもご覧ください

適用対象