24小时热门版块排行榜    

Znn3bq.jpeg
查看: 2183  |  回复: 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 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 327求调剂 +27 Xxjc1107. 2026-04-13 30/1500 2026-04-19 08:22 by cuisz
[考研] 294求调剂 +15 淡然654321 2026-04-15 15/750 2026-04-19 08:20 by cuisz
[考研] 300求调剂 +12 橙a777 2026-04-15 12/600 2026-04-18 23:51 by 路病情
[考研] 291求调剂 +10 关忆北. 2026-04-14 10/500 2026-04-18 23:32 by 路病情
[考研] 生物学调剂 +10 纸扇zhishan 2026-04-13 10/500 2026-04-18 21:19 by zqndavala
[考研] 320求调剂 +5 深郊akm 2026-04-17 5/250 2026-04-18 19:52 by 王珺璞
[考研] 化工学硕294分,求导师收留 +33 yzyzx 2026-04-12 37/1850 2026-04-17 23:00 by wunaiy88
[考研] 一志愿华中农业071010,320求调剂 +17 困困困困坤坤 2026-04-14 19/950 2026-04-17 20:08 by 关一盏灯cd
[考研] 295分求调剂 +5 ?要上岸? 2026-04-17 5/250 2026-04-17 16:51 by fenglj492
[考研] 26药学专硕105500求调剂 +6 喽哈加油 2026-04-13 7/350 2026-04-16 14:31 by zhouxiaoyu
[考研] 求调剂推荐 +8 小聂爱学习 2026-04-14 8/400 2026-04-16 07:22 by 学员JpLReM
[考研] 289 分105500药学专硕求调剂(找B区学校) +4 白云123456789 2026-04-13 4/200 2026-04-16 00:18 by 粉沁若尘
[考研] 一志愿A区211,22408 321求调剂 +6 随心所欲☆ 2026-04-15 7/350 2026-04-15 21:45 by lbsjt
[考研] 通信工程求调剂!!! +6 zlb770521 2026-04-14 6/300 2026-04-15 20:00 by 学员JpLReM
[教师之家] 转长聘了 +7 简单化xn 2026-04-13 7/350 2026-04-14 14:50 by xindong
[考研] 105500药学求调剂 +4 x_skys 2026-04-12 4/200 2026-04-14 13:37 by rndfc
[考研] 085600材料与化工329分求调剂 +24 叶zilin 2026-04-13 25/1250 2026-04-14 09:20 by 试管破裂
[考研] B区0809 ,数一英一,290 求调剂 +3 泠潍1111 2026-04-12 4/200 2026-04-13 20:35 by 学员JpLReM
[考研] 302求调剂 +10 易!? 2026-04-13 10/500 2026-04-13 19:04 by lbsjt
[考研] 339求调剂 +4 hanwudada 2026-04-12 4/200 2026-04-13 12:03 by 蓝云思雨
信息提示
请填处理意见