文件名称:lolremez:using使用Remez算法的多项式逼近
文件大小:25KB
文件格式:ZIP
更新时间:2024-05-30 01:37:58
C++
洛尔·雷梅兹(LolRemez) 使用多项式近似函数的Remez算法实现。 提供教程。 下面提供了构建说明。 例子 double浮点数的5度多项式在[sqrt(2),pi²]范围内的近似atan(sqrt(3+x³)-exp(1+x)) : lolremez --double -d 5 -r " sqrt(2):pi² " " atan(sqrt(3+x³)-exp(1+x)) " 结果: /* Approximation of f(x) = atan(sqrt(3+x³)-exp(1+x)) * on interval [ sqrt(2), pi² ] * with a polynomial of degree 5. */ double f ( double x) { double u = - 3.9557569330471555e-5 ; u = u *