次の方法で共有


sin、sinf、sinl、sinh、sinhf、sinhl

サインとハイパーボリック サインを計算します。

double sin(
   double x 
);
float sin(
   float x
);  // C++ only
long double sin(
   long double x
);  // C++ only
float sinf(
   float x 
);
long double sinl(
   long double x
);
double sinh(
   double x 
);
float sinh(
   float x 
);  // C++ only
long double sinh(
   long double x
);  // C++ only
float sinhf(
   float x
);
long double sinhl(
   long double x
);

パラメーター

  • x
    角度 (ラジアン)。

戻り値

sin 関数は、x のサイン値を返します。 x が 263 以上、または –263 以下の場合、結果から有意性が失われます。

sinh 関数は、x のハイパーボリック サイン値を返します。 既定では、結果が大きすぎる場合、sinh は errno を ERANGE に設定し、±HUGE_VAL を返します。

入力

SEH 例外

Matherr 例外

± QNAN、IND

なし。

_DOMAIN

± ∞ (sin、sinf、sinl)

INVALID

_DOMAIN

|x| ≥ 7.104760e+002 (sinh、sinhf、sinhl)

OVERFLOW+INEXACT

OVERFLOW

リターン コードの詳細については、「errno、_doserrno、_sys_errlist、および _sys_nerr」を参照してください。

解説

C++ ではオーバーロードが可能であるため、float または long double の値を受け取って返す sin および sinh のオーバーロードを呼び出すことができます。 C プログラムでは、sin および sinh は常に double を受け取って返します。

必要条件

ルーチン

必須ヘッダー

sin, sinf, sinl, sinh, sinhf, sinhl

<math.h>

互換性の詳細については、「互換性」を参照してください。

使用例

// crt_sincos.c
// This program displays the sine, hyperbolic
// sine, cosine, and hyperbolic cosine of pi / 2.
//

#include <math.h>
#include <stdio.h>

int main( void )
{
   double pi = 3.1415926535;
   double x, y;

   x = pi / 2;
   y = sin( x );
   printf( "sin( %f ) = %f\n", x, y );
   y = sinh( x );
   printf( "sinh( %f ) = %f\n",x, y );
   y = cos( x );
   printf( "cos( %f ) = %f\n", x, y );
   y = cosh( x );
   printf( "cosh( %f ) = %f\n",x, y );
}
  

同等の .NET Framework 関数

参照

関連項目

浮動小数点サポート

acos、acosf、acosl

asin、asinf、asinl

atan、atanf、atanl、atan2、atan2f、atan2l

cos、cosf、cosl、cosh、coshf、coshl

tan、tanf、tanl、tanh、tanhf、tanhl

_CIsin