Complex.Sin(Complex) メソッド

定義

指定した複素数のサインを返します。

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

パラメーター

value
Complex

複素数。

戻り値

value のサイン。

次の例は、 メソッドを Sin 示しています。 メソッドによって返された値を メソッドにAsin渡すと、元ComplexSin値が返されることを示します。

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)
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)

注釈

複素数のメソッドは Sin 、実数の Math.Sin メソッドに対応します。

メソッドは Sin 、次の数式を使用して複素数 a + bi のサインを計算します。

(Sin(a) * Cosh(b)、 Cos(a) * Sinh(b))

適用対象

こちらもご覧ください