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 Sin méthode. Elle indique que la transmission de la valeur retournée par la Asin méthode à la Sin méthode 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 Sin méthode pour les nombres complexes correspond à la Math.Sin méthode des nombres réels.

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

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

S’applique à

Voir aussi