| 查看: 527 | 回复: 1 | ||
[求助]
Sine Approximation 已知angle&阈值,返回terms值
|
|
输入两个参量X 和 threshold. 逐渐添加terms值,直到满足 abs((true 􀀀-approx)/true)< threshold ; true 是系统built-in 方程式sin(x)。 sin(x) = x 􀀀- x^3/3! + x^5/5! - x^7/7!+... 方程式要返回2值。 approx和terms(添加了几个数) 输入X=pi/5, threshold=1e-6时,显示如下: >> format long >> x = pi/5; >> threshold = 1e-6; >> [approx, terms] = approx_sine(x, threshold) approx = 0.587785210384344 terms = 3 以下是本人方程式: function [approx, terms] = approx_sine(x, threshold) approx = x; % 初始 approximation terms = 0; % Number of additional terms added to improve the approximation while threshold > abs((sin(x)-approx)/sin(x)) terms = terms + 1; approx = approx + (-1)^(terms)*x.^(2*terms+1)/factorial(2*terms+1) end end 请指点,为啥返回approx错误,而且还没返回terms值(请使用while loop解题) >> sine function(pi/5, 1e-6) approx = 1.256637061435917 ans = 1.256637061435917 |
» 猜你喜欢
你们遇到过吗
已经有5人回复
航天502所 高瑛珂博士 婚内征婚 欺骗女性开房
已经有33人回复
关于水星近日点进动成因的质疑 与实证分析
已经有9人回复
婚姻里的赢家
已经有6人回复
祈祷自己至少3A2B上会啊!
已经有7人回复
山东省优青 青B通知了????
已经有3人回复
2楼2015-12-02 05:49:27











回复此楼