Complex.Negate(Complex) メソッド

定義

指定した複素数の加法に関する逆元を返します。

public:
 static System::Numerics::Complex Negate(System::Numerics::Complex value);
public static System.Numerics.Complex Negate (System.Numerics.Complex value);
static member Negate : System.Numerics.Complex -> System.Numerics.Complex
Public Shared Function Negate (value As Complex) As Complex

パラメーター

value
Complex

複素数。

戻り値

value パラメーターの Real 部および Imaginary 部に -1 を乗算した結果。

次の例では、複素数の配列内の各要素の加法逆関数を取得します。

using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      Complex[] values= { Complex.One,
                          new Complex(-7.1, 2.5),
                          new Complex(1.3, -4.2),
                          new Complex(-3.3, -1.8) };
      foreach (Complex c1 in values)
         Console.WriteLine("{0} --> {1}", c1, Complex.Negate(c1));
   }
}
// The example displays the following output:
//       (1, 0) --> (-1, 0)
//       (-7.1, 2.5) --> (7.1, -2.5)
//       (1.3, -4.2) --> (-1.3, 4.2)
//       (-3.3, -1.8) --> (3.3, 1.8)
Imports System.Numerics

Module Example
   Public Sub Main()
      Dim values() As Complex = { Complex.One, 
                                  New Complex(-7.1, 2.5), 
                                  New Complex(1.3, -4.2), 
                                  New Complex(-3.3, -1.8) }
      For Each c1 In values
         Console.WriteLine("{0} --> {1}", c1, Complex.Negate(c1))
      Next                                    
   End Sub
End Module
' The example displays the following output:
'       (1, 0) --> (-1, 0)
'       (-7.1, 2.5) --> (7.1, -2.5)
'       (1.3, -4.2) --> (-1.3, 4.2)
'       (-3.3, -1.8) --> (3.3, 1.8)

注釈

複素数の加法逆関数は、元の複素数に加算されるときに の Zero 値を生成する複素数です。 このメソッドは、元の複素数の実数と虚数の成分に -1 を掛けた複素数を返します。

メソッドは Negate 、カスタム演算子をサポートしていない言語に対して実装されます。 その動作は、単項否定演算子 UnaryNegationを使用した否定と同じです。

適用対象

こちらもご覧ください