谁能帮我解logistic方程参数!。

时间t(2.2,4.2,6.6,8.6,9.9,11.2,14.2) 水稻叶面积指数y(0.141736,1.062766,4.932433,8.435737,9.049755,7.315956,3.503462),建立叶面积指数的普适增长模型,其表达式为logistic方程修正式:y=c/(1+exp(a*t^2+b*t+d)),怎样求出c,a,b,d参数啊,跪求程序!

 Accepted Answer

pafade
pafade on 21 Nov 2022

0 votes

用1stOpt试试:
Function y=c/(1+exp(a*t^2+b*t+d));
Data;
t=2.2,4.2,6.6,8.6,9.9,11.2,14.2;
y=0.141736,1.062766,4.932433,8.435737,9.049755,7.315956,3.503462;
均方差(RMSE):0.369487336925221
残差平方和(SSE):0.955646245036643
相关系数(R): 0.993653465668983
相关系数之平方(R^2): 0.98734720983598
确定系数(DC): 0.987236383086216
卡方系数(Chi-Square): 0.118075323874719
F统计(F-Statistic): 78.3476977376234
参数 最佳估算
---------- -------------
c 28.1294556683999
a 0.0685878286255586
b -1.35361126550283
d 7.47380009783474

More Answers (0)

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Tags

Asked:

on 21 Nov 2022

Answered:

on 21 Nov 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!