atan2() 反正切函数,atan() 的增强版,能确定象限

1.简介

atan2() 函数的功能是求 y/x 的反正切值。atan2() 是 atan() 的增强版,能够确定角度所在的象限。

  • 反正切函数 atan2() 和正切函数 tan() 的功能恰好相反:tan() 是已知一个角的弧度值,求该角的正切值;而 atan2()是已知一个角的正切值(也就是 y/x),求该角的弧度值。

2.注意事项

atan2(y,x)求解的是(x,y)点相对与x轴的夹角,取值范围是(-pi,pi)

3.实例

    /* atan2 example */
    #include <stdio.h>      /* printf */
    #include <math.h>       /* atan2 */
    #define PI 3.14159265
    int main ()
    {
        double x, y, result;
        x = -10.0;
        y = 10.0;
        result = atan2 (y,x) * 180 / PI;
        printf ("The arc tangent for (x=%f, y=%f) is %f degrees\n", x, y, result );
        return 0;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

My.科研小菜鸡

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值