tan
、 、 tanf
tanl
計算正切值。
語法
double tan( double x );
float tanf( float x );
long double tanl( long double x );
#define tan(x) // Requires C11 or higher
float tan( float x ); // C++ only
long double tan( long double x ); // C++ only
參數
x
角度 (弧度)。
傳回值
tan
函式會傳回 x
的正切。 如果 x
大於或等於 263,或小於或等於 -263,則結果中會遺失重要性。
輸入 | SEH 例外狀況 | _matherr 例外 |
---|---|---|
± QNaN,IND | none | _DOMAIN |
± INF | INVALID |
_DOMAIN |
備註
因為 C++ 允許多載,所以您可以呼叫採用並傳回 tan
或 float
值的 long double
的多載。 在 C 程式中,除非您使用 <tgmath.h>
巨集來呼叫此函式, tan
否則一律會採用 並傳 double
回 。
如果您使用的tan
<tgmath.h>
巨集,自變數的類型會決定選取的函式版本。 如需詳細資料,請參閱型別泛型數學。
根據預設,此函式的全域狀態會限定於應用程式。 若要變更此行為,請參閱 CRT 中的全域狀態。
需求
常式 | 必要的標頭 (C) | 必要的標頭 (C++) |
---|---|---|
tan 、 、 tanf tanl |
<math.h> |
<cmath> 或 <math.h> |
tan 巨集 |
<tgmath.h> |
如需相容性詳細資訊,請參閱相容性。
範例
// crt_tan.c
// This program displays the tangent of pi / 4
// Compile by using: cl crt_tan.c
#include <math.h>
#include <stdio.h>
int main( void )
{
double pi = 3.1415926535;
double x;
x = tan( pi / 4 );
printf( "tan( %f ) = %f\n", pi/4, x );
}
tan( 0.785398 ) = 1.000000
另請參閱
數學與浮點支援
acos
、 、 acosf
acosl
asin
、 、 asinf
asinl
atan
、、atanf
atanl
、atan2
、、atan2f
、atan2l
cos
、 、 cosf
cosl
sin
、 、 sinf
sinl
_CItan