How to print Rsdnrm after fitting?

1 visualizzazione (ultimi 30 giorni)
Daniel Zhou
Daniel Zhou il 19 Nov 2020
Commentato: Star Strider il 21 Gen 2021
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?

Risposte (1)

Star Strider
Star Strider il 19 Nov 2020
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 Commenti
Yasin Islam
Yasin Islam il 21 Gen 2021
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?

Accedi per commentare.

Categorie

Scopri di più su Get Started with Curve Fitting Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by