用MATLAB拟合曲线并求函数

x=[00.10.20.40.60.81]y=[7.537.046.24.83.573.032.54]数据如下,已知尽量拟合成y=7.53-Aln(1+bx)的形式,我用... x=[0 0.1 0.2 0.4 0.6 0.8 1]
y=[7.53 7.04 6.2 4.8 3.57 3.03 2.54]
数据如下,已知尽量拟合成y=7.53-Aln(1+bx)的形式,我用MATLAB,一拟合就拟合失败,有没有什么软件能拟合出来
展开
二中混过
2013-03-21 · TA获得超过1325个赞
知道小有建树答主
回答量:473
采纳率:50%
帮助的人:568万
展开全部

>> x=[0 0.1 0.2 0.4 0.6 0.8 1];y=[7.53 7.04 6.2 4.8 3.57 3.03 2.54];

fitType=fittype('7.53-a*log(1+b*x)','independent','x','coefficients',{'a','b'})

fit(x',y',fitType)

 

fitType = 

     General model:     fitType(a,b,x) = 7.53-a*log(1+b*x)

Warning: Start point not provided, choosing random start point. 

> In Warning>Warning.throw at 31

  In fit>iFit at 320

  In fit at 109 

 

ans = 

     General model:     ans(x) = 7.53-a*log(1+b*x)

     Coefficients (with 95% confidence bounds):

       a =       5.522  (0.9524, 10.09)

       b =       1.555  (-0.2776, 3.388)

这样行不行?

追问
可以的,请问我自己要怎么输才能出来图象
追答

这是在cftool中自动生成的,你可以直接在cftool直接拟合,不用编程,

命令窗口键入cftool,即可打开,具体用法请看help

可改为以下程序

x=[0 0.1 0.2 0.4 0.6 0.8 1];

y=[7.53 7.04 6.2 4.8 3.57 3.03 2.54];

fitType=fittype('7.53-a*log(1+b*x)','independent','x','coefficients',{'a','b'})

fit_y=fit(x',y',fitType);

 plot(fit_y)

 hold on

plot(x,y,'o')

不要满足哦
2013-03-23 · TA获得超过7246个赞
知道小有建树答主
回答量:522
采纳率:83%
帮助的人:51.3万
展开全部
???什么意思???
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式