sinh、sinhf、sinhl
来自 cppreference.com
在头文件 <math.h> 中定义 |
||
float sinhf( float arg ); |
(1) | (自 C99) |
double sinh( double arg ); |
(2) | |
long double sinhl( long double arg ); |
(3) | (自 C99) |
在头文件 <tgmath.h> 中定义 |
||
#define sinh( arg ) |
(4) | (自 C99) |
1-3) 计算 arg 的双曲正弦。
4) 类型通用宏:如果参数的类型为 long double,则调用
sinhl
。否则,如果参数的类型为整数类型或 double,则调用 sinh
。否则,调用 sinhf
。如果参数是复数,则宏调用相应的复数函数 (csinhf,csinh,csinhl).内容 |
[编辑] 参数
arg | - | 表示双曲角的浮点值 |
[编辑] 返回值
如果未发生错误,则返回 arg 的双曲正弦 (sinh(arg),或earg -e-arg |
2 |
如果由于溢出导致范围错误,则返回 ±HUGE_VAL、±HUGE_VALF
或 ±HUGE_VALL
。
如果由于下溢导致范围错误,则返回正确的结果(四舍五入后)。
[编辑] 错误处理
错误的报告方式如 math_errhandling
中所述。
如果实现支持 IEEE 浮点运算(IEC 60559),
- 如果参数为 ±0 或 ±∞,则返回未修改的参数,
- 如果参数为 NaN,则返回 NaN。
[编辑] 说明
POSIX 规定,在下溢的情况下,返回未修改的 arg,如果不支持,则返回小于或等于 DBL_MIN、FLT_MIN 和 LDBL_MIN 的实现定义的值。
[编辑] 示例
运行此代码
#include <errno.h> #include <fenv.h> #include <math.h> #include <stdio.h> // #pragma STDC FENV_ACCESS ON int main(void) { printf("sinh(1) = %f\nsinh(-1)=%f\n", sinh(1), sinh(-1)); printf("log(sinh(1) + cosh(1))=%f\n", log(sinh(1) + cosh(1))); // special values printf("sinh(+0) = %f\nsinh(-0)=%f\n", sinh(0.0), sinh(-0.0)); // error handling errno = 0; feclearexcept(FE_ALL_EXCEPT); printf("sinh(710.5) = %f\n", sinh(710.5)); if (errno == ERANGE) perror(" errno == ERANGE"); if (fetestexcept(FE_OVERFLOW)) puts(" FE_OVERFLOW raised"); }
可能的输出
sinh(1) = 1.175201 sinh(-1)=-1.175201 log(sinh(1) + cosh(1))=1.000000 sinh(+0) = 0.000000 sinh(-0)=-0.000000 sinh(710.5) = inf errno == ERANGE: Numerical result out of range FE_OVERFLOW raised
[编辑] 参考
- C23 标准 (ISO/IEC 9899:2024)
- 7.12.5.5 sinh 函数 (p: TBD)
- 7.25 类型通用数学 <tgmath.h> (p: TBD)
- F.10.2.5 sinh 函数 (p: TBD)
- C17 标准 (ISO/IEC 9899:2018)
- 7.12.5.5 sinh 函数 (p: 176)
- 7.25 类型通用数学 <tgmath.h> (p: 272-273)
- F.10.2.5 sinh 函数 (p: 379)
- C11 标准 (ISO/IEC 9899:2011)
- 7.12.5.5 sinh 函数 (p: 241-242)
- 7.25 类型通用数学 <tgmath.h> (p: 373-375)
- F.10.2.5 sinh 函数 (p: 520)
- C99 标准 (ISO/IEC 9899:1999)
- 7.12.5.5 sinh 函数 (p: 222)
- 7.22 类型通用数学 <tgmath.h> (p: 335-337)
- F.9.2.5 sinh 函数 (p: 457)
- C89/C90 标准 (ISO/IEC 9899:1990)
- 4.5.3.2 sinh 函数
[编辑] 另请参阅
(C99)(C99) |
计算双曲余弦 (cosh(x)) (函数) |
(C99)(C99) |
计算双曲正切 (tanh(x)) (函数) |
(C99)(C99)(C99) |
计算反双曲正弦 (arsinh(x)) (函数) |
(C99)(C99)(C99) |
计算复数双曲正弦 (函数) |
C++ 文档 for sinh
|