当前位置: C语言 -- 标准库 -- <math.h> -- atan2l

atan2l函数


概要:
#include <math.h>
long double atan2l(long double y,long double x);

描述:

atan2l

该函数计算y/x的反正切值,使用两个参数的符号确定返回值的象限。

如果两个参数均为0,将可能发生域错误。


参数:
long double y

参数为一个long double类型的浮点数。

long double x

参数为一个long double类型的浮点数。


返回值:

函数返回y/x的反正切值,返回值为区间[-π,+π]内的弧度值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数atan2l范例*/

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

int main(void)
{
    long double y = 1.0L, x = 1.0L;
    long double angle;

    angle = atan2l(y,x)*180.0L/3.14L;
    printf("The arc tangent of %.2Lf/%.2Lf is %d degrees.\n", y, x, (int)angle);

    return 0;
}

输出:

The arc tangent of 1.00/1.00 is 45 degrees.


相关内容:
atan2 double类型y/x的反正切函数。
atan2f float类型y/x的反正切函数。