atan, atanf, atanl atan2, atan2f, atan2l sinh, sinhf, sinhl cosh, coshf, coshl tanh, tanhf, tanhl asinh, asinhf, asinhl acosh, acoshf, acoshl atanh, atanhf, atanhl erf, erff, erfl erfc, erfcf, erfcl lgamma, lgammaf, lgammal tgamma, tgammaf, tgammal ceil, ceilf, ceill ...
若 z 为实数或整数,则宏调用对应的实数函数( atanf、 atan、 atanl)。若 z 为虚数,则宏调用函数 atanh 的对应实数版本,实现公式 atan(iy) = i atanh(y) ,而宏的返回类型为虚数。 参数 z - 复参数 返回值 若不发生错误,则返回 z 的复弧(反)正切,在沿虚轴无界,沿实轴在区间 [−π/2; +π/...
: 求反余弦值acosh()、acoshf()、acoshl():求反双曲余弦值atan()、atanf()、atanl(): 求反正切值atan2()、atan2f()、atanl(): 求坐标值的反正切值atanh()、atanhf()、atanhl():求反双曲正切值// 指数和对数运算pow()、powf()、powl(): 求 n 的 m 次方的值exp()、expf()、expl(): 求 ...
#include <math.h> double atan(double x); float atanf(float x); long double atanl(long double x);参数x -- 浮点值。返回值返回x 的反正切值,以弧度为单位。返回值的范围是 [-π/2, π/2]。实例下面的实例演示了 atan() 函数的用法。
extern float atanf(float x); extern double atan(double x); extern long double atanl(long double x);复制代码 1. 2. 3. 4. 2个参数的反正切函数:z = arctan(y/x) extern float atan2f(float y, float x); extern double atan2(double y, double x); ...
默认情况下,此函数的全局状态范围限定为应用程序。 若要更改此行为,请参阅CRT 中的全局状态。 要求 例程必需的标头 _cexit<process.h> _c_exit<process.h> 有关兼容性的详细信息,请参阅兼容性。 另请参阅 进程和环境控制 abort atexit _exec、_wexec函数 ...
double asin(double x); double acos(double x); double atan(double x); double atan2(double y, double x); float asinf(float x); float acosf(float x); float atanf(float x); float atan2f(float y, float x); long double asinl(long double x); long double acosl(long double x); long...
默认情况下,此函数的全局状态范围限定为应用程序。 若要更改此行为,请参阅CRT 中的全局状态。 一般文本例程映射 展开表 Tchar.h 例程_UNICODE和_MBCS未定义_MBCS已定义_UNICODE已定义 _tcsnextc_strnextc_mbsnextc_wcsnextc _strnextc和_wcsnextc是_mbsnextc的单字节字符字符串和宽字符字符串版本。_...
using ::atanf; //反正切 using ::atanl; //反正切 using ::ceil; //上取整 using ::ceilf; //上取整 using ::ceill; //上取整 using ::cos; //余弦 using ::cosf; //余弦 using ::cosh; //双曲余弦 using ::coshf; //双曲余弦 ...