Partager via


Complex.Sin(Complex) Méthode

Définition

Retourne le sinus du nombre complexe spécifié.

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

Paramètres

value
Complex

Nombre complexe.

Retours

Le sinus de value.

Exemples

L’exemple suivant illustre la méthode Sin. Il indique que le passage de la valeur retournée par la méthode Asin à la méthode Sin retourne la valeur d’origine Complex.

using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      Complex[] values = { new Complex(2.3, 1.4),
                           new Complex(-2.3, 1.4),
                           new Complex(-2.3, -1.4),
                           new Complex(2.3, -1.4) };
      foreach (Complex value in values)
         Console.WriteLine("Sin(Asin({0})) = {1}",
                            value, Complex.Sin(Complex.Asin(value)));
   }
}
// The example displays the following output:
//       Sin(Asin((2.3, 1.4))) = (2.3, 1.4)
//       Sin(Asin((-2.3, 1.4))) = (-2.3, 1.4)
//       Sin(Asin((-2.3, -1.4))) = (-2.3, -1.4)
//       Sin(Asin((2.3, -1.4))) = (2.3, -1.4)
open System.Numerics

let values =
    [ Complex(2.3, 1.4)
      Complex(-2.3, 1.4)
      Complex(-2.3, -1.4)
      Complex(2.3, -1.4) ]

for value in values do
    printfn $"Sin(Asin({value})) = {Complex.Asin value |> Complex.Sin}"
// The example displays the following output:
//       Sin(Asin((2.3, 1.4))) = (2.3, 1.4)
//       Sin(Asin((-2.3, 1.4))) = (-2.3, 1.4)
//       Sin(Asin((-2.3, -1.4))) = (-2.3, -1.4)
//       Sin(Asin((2.3, -1.4))) = (2.3, -1.4)
Imports System.Numerics

Module Example
   Public Sub Main()
      Dim values() As Complex = { New Complex(2.3, 1.4),
                                  New Complex(-2.3, 1.4), 
                                  New Complex(-2.3, -1.4),
                                  New Complex(2.3, -1.4) }
      For Each value As Complex In values
         Console.WriteLine("Sin(Asin({0})) = {1}", 
                            value, Complex.Sin(Complex.Asin(value)))
      Next                      
   End Sub
End Module
' The example displays the following output:
'       Sin(Asin((2.3, 1.4))) = (2.3, 1.4)
'       Sin(Asin((-2.3, 1.4))) = (-2.3, 1.4)
'       Sin(Asin((-2.3, -1.4))) = (-2.3, -1.4)
'       Sin(Asin((2.3, -1.4))) = (2.3, -1.4)

Remarques

La méthode Sin pour les nombres complexes correspond à la méthode Math.Sin pour les nombres réels.

La méthode Sin calcule le sinus du nombre complexe a + bi comme x + yi, où :

  • x est $\sin a \times \cosh b$
  • y est $\cos a \times \sinh b$

S’applique à

Voir aussi