Freigeben über


Complex.Conjugate(Complex) Methode

Definition

Berechnet das Konjugat einer komplexen Zahl und gibt das Ergebnis zurück.

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

Parameter

value
Complex

Eine komplexe Zahl.

Gibt zurück

Das Konjugat von value.

Beispiele

Im folgenden Beispiel wird die Konjugation zweier komplexer Zahlen angezeigt.

using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      Complex[] values = { new Complex(12.4, 6.3),
                           new Complex(12.4, -6.3) };
      foreach (Complex value in values)
      {
         Console.WriteLine("Original value: {0}", value);
         Console.WriteLine("Conjugate:      {0}\n",
                           Complex.Conjugate(value).ToString());
      }
   }
}
// The example displays the following output:
//       Original value: (12.4, 6.3)
//       Conjugate:      (12.4, -6.3)
//
//       Original value: (12.4, -6.3)
//       Conjugate:      (12.4, 6.3)
open System.Numerics

let values = [ Complex(12.4, 6.3);
               Complex(12.4, -6.3) ]

for value in values do
    printfn $"Original value: {value}"
    printfn $"Conjugate:      {Complex.Conjugate(value)}\n"
// The example displays the following output:
//       Original value: (12.4, 6.3)
//       Conjugate:      (12.4, -6.3)
//
//       Original value: (12.4, -6.3)
//       Conjugate:      (12.4, 6.3)
Imports System.Numerics

Module Example
   Public Sub Main()
      Dim values() As Complex = { New Complex(12.4, 6.3), 
                                  New Complex(12.4, -6.3) }
      For Each value In values
         Console.WriteLine("Original value: {0}", value)
         Console.WriteLine("Conjugate:      {0}", 
                           Complex.Conjugate(value).ToString())
         Console.WriteLine()                        
      Next                            
   End Sub
End Module
' The example displays the following output:
'       Original value: (12.4, 6.3)
'       Conjugate:      (12.4, -6.3)
'       
'       Original value: (12.4, -6.3)
'       Conjugate:      (12.4, 6.3)

Hinweise

Das Konjugieren einer komplexen Zahl umkehrt das Vorzeichen der imaginären Komponente; d. h. sie wendet eine unäre Negation auf die imaginäre Komponente an. Wenn a + bi eine komplexe Zahl ist, ist die Konjugierte a - bi.

Gilt für: