acos、acosf、acosl
来自 cppreference.com
在头文件 <math.h> 中定义 |
||
float acosf( float arg ); |
(1) | (自 C99 起) |
double acos( double arg ); |
(2) | |
long double acosl( long double arg ); |
(3) | (自 C99 起) |
_Decimal32 acosd32( _Decimal32 arg ); |
(4) | (自 C23 起) |
_Decimal64 acosd64( _Decimal64 arg ); |
(5) | (自 C23 起) |
_Decimal128 acosd128( _Decimal128 arg ); |
(6) | (自 C23 起) |
在头文件 <tgmath.h> 中定义 |
||
#define acos( arg ) |
(7) | (自 C99 起) |
1-6) 计算 arg 的反余弦主值。
7) 类型通用宏:如果参数的类型为 long double,则调用 (3) (
acosl
)。否则,如果参数的类型为整数类型或类型 double,则调用 (2) (acos
)。否则,调用 (1) (acosf
)。如果参数为复数,则该宏会调用相应的复数函数 (cacosf、cacos、cacosl).
仅当实现预定义 |
(自 C23 起) |
内容 |
[编辑] 参数
arg | - | 浮点值 |
[编辑] 返回值
如果未发生错误,则返回 arg 的反余弦 (arccos(arg)),范围为 [0 ; π]。
如果发生域错误,则返回实现定义的值(在支持的情况下返回 NaN)。
如果由于下溢发生范围错误,则返回正确的结果(四舍五入后)。
[编辑] 错误处理
错误报告方式如 math_errhandling
中所述。
如果 arg 超出 [-1.0; 1.0]
范围,则会发生域错误。
如果实现支持 IEEE 浮点运算(IEC 60559)
- 如果参数为 +1,则返回
+0
; - 如果 |arg| > 1,则发生域错误并返回 NaN;
- 如果参数为 NaN,则返回 NaN。
[编辑] 示例
运行此代码
#include <errno.h> #include <fenv.h> #include <math.h> #include <stdio.h> #include <string.h> #ifndef __GNUC__ #pragma STDC FENV_ACCESS ON #endif int main(void) { printf("acos(-1) = %f\n", acos(-1)); printf("acos(0.0) = %f 2*acos(0.0) = %f\n", acos(0), 2 * acos(0)); printf("acos(0.5) = %f 3*acos(0.5) = %f\n", acos(0.5), 3 * acos(0.5)); printf("acos(1) = %f\n", acos(1)); // error handling errno = 0; feclearexcept(FE_ALL_EXCEPT); printf("acos(1.1) = %f\n", acos(1.1)); if (errno == EDOM) perror(" errno == EDOM"); if (fetestexcept(FE_INVALID)) puts(" FE_INVALID raised"); }
可能的输出
acos(-1) = 3.141593 acos(0.0) = 1.570796 2*acos(0.0) = 3.141593 acos(0.5) = 1.047198 3*acos(0.5) = 3.141593 acos(1) = 0.000000 acos(1.1) = nan errno == EDOM: Numerical argument out of domain FE_INVALID raised
[编辑] 参考
- C23 标准 (ISO/IEC 9899:2024)
- 7.12.4.1 acos 函数 (p: TBD)
- 7.25 类型通用数学 <tgmath.h> (p: TBD)
- F.10.1.1 acos 函数 (p: TBD)
- C17 标准 (ISO/IEC 9899:2018)
- 7.12.4.1 acos 函数 (p: 173)
- 7.25 类型通用数学 <tgmath.h> (p: 272-273)
- F.10.1.1 acos 函数 (p: 378)
- C11 标准 (ISO/IEC 9899:2011)
- 7.12.4.1 acos 函数 (p: 238)
- 7.25 类型通用数学 <tgmath.h> (p: 373-375)
- F.10.1.1 acos 函数 (p: 518)
- C99 标准 (ISO/IEC 9899:1999)
- 7.12.4.1 acos 函数 (p: 218)
- 7.22 类型通用数学 <tgmath.h> (p: 335-337)
- F.9.1.1 acos 函数 (p: 455)
- C89/C90 标准 (ISO/IEC 9899:1990)
- 4.5.2.1 acos 函数
[编辑] 另请参见
(C99)(C99) |
计算反正弦 (arcsin(x)) (函数) |
(C99)(C99) |
计算反正切 (arctan(x)) (函数) |
(C99)(C99) |
计算反正切,使用符号来确定象限 (函数) |
(C99)(C99) |
计算余弦 (cos(x)) (函数) |
(C99)(C99)(C99) |
计算复数的反余弦 (函数) |
C++ 文档 for acos
|