用matlab程序写用二分法求方程根

 我来答
洪兴靓坤aa
2018-03-31 · TA获得超过2.1万个赞
知道小有建树答主
回答量:126
采纳率:84%
帮助的人:6万
展开全部

二分法在很多地方应该都会见到,这里是通过二分法迭代逼近的方法求出一个方程的根。

function xc = bisection(f,a,b,tol)
% use the bisection method to find the root of the function
% Page 30,computer problem 7(Bisection method)
% input:
% f:the function that transform from the equation
% a,b:the left and right value of the interval which the root is in% tol:the accuracy
% output:
% xc:the solution of the equationif sign(f(a)) * sign(f(b)) >=0
    error('f(a)f(b)<0 not satisfied!')endif nargin < 3
    disp('The function should at least include 3 parameters');endif nargin == 3
    tol = 10^-6;endwhile (b-a)/2 > tol
    c = (a + b)/2;     
    if f(c) == 0 % when f(c) == 0,c is a root of the function
        break 
    end
    if f(a) * f(c) < 0  
                               % a and c form a new interval
        b = c;  else  % c and b form a new interval
        a = c;  endendxc = (a+b)/2; % the mid_rang is the root that we find

编程问题,已经给出完整代码,没有相关配图可以配,希望谅解。

参考资料

CSDN.CSDN[引用时间2018-1-9]

风儿Lamp沙儿
2017-01-06 · TA获得超过7829个赞
知道大有可为答主
回答量:1787
采纳率:63%
帮助的人:465万
展开全部
matlab源程序如下:
function erfenfa(a,b)%a,b为区间
s=(a+b)/2;
while b-a>1e-5
if fun(a)*fun(s)>0
a=s;
elseif fun(a)*fun(s)<0
b=s;
elseif fun(s)==0
disp(s);
end
s=(a+b)/2;
end
disp(s);

function y=fun(x)
y=2*x^2+x-4;%这里是函数表达式,例如:y=2*x^2+x-4
end
end
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式