24小时热门版块排行榜    

查看: 2444  |  回复: 13

zhangxiaodao

银虫 (小有名气)

[求助] 根据数据和方程的形式,求方程中的参数

RT, 数据如下列, 然后方程的形式为y=a*exp[-p/(x+q)],求方程中的p和q,谢谢各位大侠,急求啊~~
x=1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
2
2.1
2.2
2.3
2.4
y=10363972.36
5697599.795
3269017.372
1948866.775
1202604.284
765578.5464
501320.0508
336809.4864
231640.3371
162754.7914
116618.904
85080.3473
63109.81473
47535.43773
回复此楼
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

715211229

木虫 (正式写手)

★ ★
臭水沟(金币+2): 谢谢交流~~ 2011-12-20 11:03:15
matlab :ctool工具箱
%%%拟合效果很差

Fit computation did not converge:
Maximum number of function evaluations exceeded. Increasing
MaxFunEvals (in fit options) may allow for a better fit, or
the current equation may not be a good model for the data.

Fit found when optimization terminated:

General model:
       f(x) = a*exp(-p/(x+q))
Coefficients (with 95% confidence bounds):
       a =       11.28  (-2.505e+004, 2.507e+004)
       p =      -7.497  (-3191, 3176)
       q =     -0.4499  (-151.6, 150.7)

Goodness of fit:
  SSE: 1.309e+014
  R-square: -0.159
  Adjusted R-square: -0.3697
  RMSE: 3.45e+006


» 本帖已获得的红花(最新10朵)

我是蜗牛
2楼2011-12-20 05:28:41
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

715211229

木虫 (正式写手)

cftool工具箱
我是蜗牛
3楼2011-12-20 05:29:19
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhangxiaodao

银虫 (小有名气)

送鲜花一朵
引用回帖:
: Originally posted by 715211229 at 2011-12-20 05:28:41:
matlab :ctool工具箱
%%%拟合效果很差

Fit computation did not converge:
Maximum number of function evaluations exceeded. Increasing
MaxFunEvals (in fit options) may allow  ...

谢谢
4楼2011-12-20 09:00:53
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

715211229

木虫 (正式写手)


臭水沟(金币+1): 谢谢交流~~ 2011-12-20 11:03:26
你看下这个帖子,我这个可能是错误的
http://muchong.com/bbs/viewthread.php?tid=3866180
我是蜗牛
5楼2011-12-20 10:48:24
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

dbb627

荣誉版主 (著名写手)

【答案】应助回帖


感谢参与,应助指数 +1
zhangxiaodao(金币+20): 2011-12-20 13:52:42
xiegangmai(金币+1): 谢谢应助! 2011-12-20 23:02:49
General model:
     f(x) = a*exp(-p/(x+q))
Coefficients (with 95% confidence bounds):
       a =           1  (1, 1)
       p =         -42  (-42, -42)
       q =         1.5  (1.5, 1.5)

Goodness of fit:
  SSE: 1.767e-007
  R-square: 1
  Adjusted R-square: 1
  RMSE: 0.0001267

初值a=10000 p=-2  q=-1
The more you learn, the more you know, the more you know, and the more you forget. The more you forget, the less you know. So why bother to learn.
6楼2011-12-20 11:22:06
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

dbb627

荣誉版主 (著名写手)


xiegangmai(金币+1): 辛苦了! 2011-12-20 23:03:02
引用回帖:
5楼: Originally posted by 715211229 at 2011-12-20 10:48:24:
你看下这个帖子,我这个可能是错误的
http://muchong.com/bbs/viewthread.php?tid=3866180

图如下





» 本帖已获得的红花(最新10朵)

The more you learn, the more you know, the more you know, and the more you forget. The more you forget, the less you know. So why bother to learn.
7楼2011-12-20 11:23:32
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhangxiaodao

银虫 (小有名气)

送鲜花一朵
引用回帖:
: Originally posted by dbb627 at 2011-12-20 11:23:32:
图如下


非常感谢,您拟合的太棒了~~
ps: 怎么送金币呢?然后能讲程序发给我吗,我是MATLAB门外汉。。。。
8楼2011-12-20 13:48:57
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

dbb627

荣誉版主 (著名写手)

CODE:
x=[1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
2
2.1
2.2
2.3
2.4];
y=[10363972.36
5697599.795
3269017.372
1948866.775
1202604.284
765578.5464
501320.0508
336809.4864
231640.3371
162754.7914
116618.904
85080.3473
63109.81473
47535.43773];
st_ = [1000 -2 -1];
ft_ = fittype('a*exp(-p/(x+q))','dependent',{'y'},'independent',{'x'},'coefficients',{'a', 'p','q'});
[cf_,good]= fit(x,y,ft_ ,'Startpoint',st_)
h_ = plot(cf_,'fit',0.95);
legend off;  % turn off legend from plot method call
set(h_(1),'Color',[1 0 0],...
     'LineStyle','-', 'LineWidth',2,...
     'Marker','none', 'MarkerSize',6);
hold on,plot(x,y,'*')

cf_ =

     General model:
     cf_(x) = a*exp(-p/(x+q))
     Coefficients (with 95% confidence bounds):
       a =           1  (1, 1)
       p =         -42  (-42, -42)
       q =         1.5  (1.5, 1.5)

good =

           sse: 1.7672e-007
       rsquare: 1
           dfe: 11
    adjrsquare: 1
          rmse: 1.2675e-004

» 本帖已获得的红花(最新10朵)

The more you learn, the more you know, the more you know, and the more you forget. The more you forget, the less you know. So why bother to learn.
9楼2011-12-20 14:38:54
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

zhangxiaodao

银虫 (小有名气)

送鲜花一朵
引用回帖:
: Originally posted by dbb627 at 2011-12-20 14:38:54:
[code]
x=[1.1
1.2
1.3
1.4
1.5
1.6
1.7
1.8
1.9
2
2.1
2.2
2.3
2.4];
y=[10363972.36
5697599.795
3269017.372
1948866.775
1202604.284
765578.5464
501320.0508
336809.4864
231640.3 ...

非常感谢dbb627版主,可能您也知道我问您要源程序的目的了,我手里还有一些数据,是跟上面一样的方程,希望得到a,p,q值,请问能直接套用这个程序吗,或者需要做哪些调整,谢谢您。
10楼2011-12-20 15:41:40
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 zhangxiaodao 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[基金申请] 这样的filecode谁见过 +10 布布和一二 2026-08-08 18/900 2026-08-09 15:14 by zxy7909
[基金申请] 关于代码变化问题,想知道的进来 +13 且听虎啸 2026-08-07 17/850 2026-08-09 15:08 by 天神眷顾
[基金申请] 关于豆爷回答的JTJC与%2F数量 +5 yang182083 2026-08-06 7/350 2026-08-08 18:29 by zhanghaozhu
[基金申请] 国基金的申报应该改成非等额制,评价高的钱多评价低的钱少,但是增加资助率 +7 a089 2026-08-07 7/350 2026-08-08 18:05 by gltch
[考研] 售SCI一区T0P文章,我:8.O55.1.O.54,科目全,可十急 +3 qTvzQBRAHjCi 2026-08-07 5/250 2026-08-08 16:47 by oEVWOejN9taj
[论文投稿] 售SCI-T0P文章,我:8O.5.5.1.O.54,科目齐全,可+急 +3 qTvzQBRAHjCi 2026-08-07 4/200 2026-08-08 16:47 by oEVWOejN9taj
[基金申请] 售SCI-T0P文章,我:8O.5.5.1.O.54,科目齐全,可+急 +3 Vi50GxzrFcSG 2026-08-07 4/200 2026-08-08 16:19 by oEVWOejN9taj
[公派出国] 售SCI一区T0P文章,我:8O.55.1.O.5.4,科目齐全,可+急 +3 Vi50GxzrFcSG 2026-08-07 5/250 2026-08-08 15:59 by oEVWOejN9taj
[论文投稿] 售SCI一区文章,我:8.O.55.1.O.54,科目齐全,可伽急 +3 Vi50GxzrFcSG 2026-08-07 6/300 2026-08-08 15:07 by oEVWOejN9taj
[教师之家] 售SCI一区文章,我:8.O.55.1.O.54,科目齐全,可伽急 +3 KXLV3nuBVBY7 2026-08-07 5/250 2026-08-08 14:07 by oEVWOejN9taj
[硕博家园] 售SCI-T0P文章,我:8O.5.5.1.O.54,科目齐全,可+急 +3 Vi50GxzrFcSG 2026-08-07 6/300 2026-08-08 10:19 by 3OOjAIS77qg2
[考博] 售SCI一区文章,我:8.O.55.1.O.54,科目齐全,可伽急 +3 HEQlVqMTIA7d 2026-08-07 3/150 2026-08-08 03:47 by 6vVgjDL4CnGu
[基金申请] 基金中了 +14 laoda193707 2026-08-06 14/700 2026-08-08 00:23 by 实验小白ha
[基金申请] 娱乐 +6 Tide man 2026-08-03 6/300 2026-08-07 22:40 by 铁帽子农民
[基金申请] filecode与中标关系的预测 +3 布布和一二 2026-08-07 3/150 2026-08-07 15:09 by gltch
[基金申请] filecode变化情况 +6 布布和一二 2026-08-07 22/1100 2026-08-07 14:45 by 且听虎啸
[基金申请] filecode +14 等待解的谜 2026-08-06 19/950 2026-08-07 12:20 by wlwhappy
[基金申请] 好消息?这个有何含义??? +8 Tide man 2026-08-05 10/500 2026-08-05 16:14 by xmuxiaoyu
[基金申请] 纯娱乐,不喜欢勿喷 +7 Tide man 2026-08-04 10/500 2026-08-04 15:10 by loufangrui
[基金申请] 什么时候能放榜呀? +3 Jacob678 2026-08-03 3/150 2026-08-03 16:14 by gltch
信息提示
请填处理意见