Perform least squares regression to determine the coefficients a and b ussing the manipulation
2 ビュー (過去 30 日間)
古いコメントを表示
solubility with temperature
S = a.exp(bT)
the manipulation ln(S) = ln(a) + bT
See attached pic for the full details. thanx a million !
0 件のコメント
回答 (1 件)
jean claude
2017 年 12 月 6 日
編集済み: jean claude
2017 年 12 月 6 日
T=[77 100 185 239 285]';
S=[2.4 3.4 7 11.1 19.6]'/100 ;
S=log(S);
regression=fitlm(T,S);
atilda=table2array(regression.Coefficients(1,1));
a=exp(atilda); %a
b=table2array(regression.Coefficients(2,1)); %b
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Linear and Nonlinear Regression についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!