How to print Rsdnrm after fitting?

조회 수: 1 (최근 30일)
Daniel Zhou
Daniel Zhou 2020년 11월 19일
댓글: Star Strider 2021년 1월 21일
I used the following code to fit my experimental data.
[theta,Rsdnrm,Rsd,ExFlg,OptmInfo,Lmda,Jmat]=lsqcurvefit(@kinetics,theta0,t,c);
But I wonder how good the fit is. I'm trying to print this Rsdnrm value. Could anyone help me to display this value?

답변 (1개)

Star Strider
Star Strider 2020년 11월 19일
The ‘Rsdnrm’ output is a scalar double value, and exists in the workspace after lsqcurvefit completes its estimation. Just use fprintf or sprintf to print it.
  댓글 수: 2
Yasin Islam
Yasin Islam 2021년 1월 21일
I'm realy sorry for the simple question but where can i find more information on this code line?
Especially theta,Rsdnrm,Rsd,ExFlg,OptmInfo,Lmda,Jmat (I tried to search for it but couldn't get any information)
What is Rsdnrm? Is it the residual sum of squares meaining sum of (data-fit)²
What is Rsd? Is it the standard deviation of my data matrix and the fit, so the deviation between just two values?
What is ExFlg? ExFlg is 0 what does it mean?
What is OptmInfo?
What is Lmda?
What is Jmat?
Star Strider
Star Strider 2021년 1월 21일

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by