有没有高精度的sin函数

2020-01-27 11:37发布

调用math.h库中的sin(30°) = 0.539060

#include <stdio.h>
#include <math.h>        //包含数学函数库用到sin(30°)

#define PI                3.41592654        //宏定义π

void main(void){
        double value = 0;        //三角函数值

        int angle = 30;                //角度

        value = sin((double)angle * PI / 180.0);        //  (double)angle 强制转换为double  
                                                                                                // sin()函数的参数必须是弧度
       
        printf("%f ", value);

}

没有没别的方法可以得到比较精确的sin和cos函数值!
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。