Complex.Imaginary Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le composant imaginaire de l’objet Complex actuel.
public:
property double Imaginary { double get(); };
public double Imaginary { get; }
member this.Imaginary : double
Public ReadOnly Property Imaginary As Double
Valeur de propriété
Composant imaginaire d’un nombre complexe.
Exemples
L’exemple suivant instancie un tableau d’objets Complex et affiche les composants réels et imaginaires de chacun sous la forme a + bi
.
using System;
using System.Numerics;
public class Example
{
public static void Main()
{
Complex[] values = { new Complex(12.5, -6.3),
new Complex(-17.8, 1.7),
new Complex(14.4, 8.9) };
foreach (var value in values)
Console.WriteLine("{0} + {1}i", value.Real, value.Imaginary);
}
}
// The example displays the following output:
// 12.5 + -6.3i
// -17.8 + 1.7i
// 14.4 + 8.9i
open System.Numerics
let values = [ Complex(12.5, -6.3); Complex(-17.8, 1.7); Complex(14.4, 8.9) ]
for value in values do
printfn $"{value.Real} + {value.Imaginary}i"
// The example displays the following output:
// 12.5 + -6.3i
// -17.8 + 1.7i
// 14.4 + 8.9i
Imports System.Numerics
Module Example
Public Sub Main()
Dim values() As Complex = { New Complex(12.5, -6.3),
New Complex(-17.8, 1.7),
New Complex(14.4, 8.9) }
For Each value In values
Console.WriteLine("{0} + {1}i", value.Real, value.Imaginary)
Next
End Sub
End Module
' The example displays the following output:
' 12.5 + -6.3i
' -17.8 + 1.7i
' 14.4 + 8.9i
Remarques
Étant donné un nombre complexe a + bi
, la propriété Imaginary retourne la valeur de b
.