Complex.Conjugate(Complex) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Computes the conjugate of a complex number and returns the result.
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
- value
- Complex
A complex number.
The conjugate of value
.
The following example displays the conjugate of two complex numbers.
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)
The conjugate of a complex number inverts the sign of the imaginary component; that is, it applies unary negation to the imaginary component. If a + bi
is a complex number, its conjugate is a - bi
.
Product | Versions |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Framework | 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1 |
UWP | 10.0 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: