利用matlab求x3-2x 1=0的根,利用matlab 编程 1.求用方程求根的二分法求方程x3-x-1=0在区间[1,1.5]内的一个实根,要求误差小于0....

/>这是源代码:

在matlab中保存为:bisection.m

function rtn=bisection(fx,xa,xb,n,delta)

% Bisection Method

% The first parameter fx is a external function with respect to viable x.

% xa is the left point of the initial interval

% xb is the right point of the initial interval

% n is the number of iterations.

x=xa;fa=eval(fx);

x=xb;fb=eval(fx);

disp(' [ n xa xb xc fc ]');

for i=1:n

xc=(xa+xb)/2;x=xc;fc=eval(fx);

X=[i,xa,xb,xc,fc];

disp(X),

if fc*fa<0

xb=xc;

else xa=xc;

end

if (xb-xa)

end

>>f='x^3-x-1';

>>bisection(f,1,1.5,20,10^(-3))

[ n xa xb xc fc ]

1.0000 1.0000 1.5000 1.2500 -0.2969

2.0000 1.2500 1.5000 1.3750 0.2246

3.0000 1.2500 1.3750 1.3125 -0.0515

4.0000 1.3125 1.3750 1.3438 0.0826

5.0000 1.3125 1.3438 1.3281 0.0146

6.0000 1.3125 1.3281 1.3203 -0.0187

7.0000 1.3203 1.3281 1.3242 -0.0021

8.0000 1.3242 1.3281 1.3262 0.0062

9.0000 1.3242 1.3262 1.3252 0.0020

从结果可以看出,

这个解为:1.3262

  • 4
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值