Effacer les filtres
Effacer les filtres

export data from fitresult

84 vues (au cours des 30 derniers jours)
Cristina Totaro
Cristina Totaro le 29 Jan 2021
Hi,
I am new on Matlab, I hope that someone can help me.
I have to make the fit of several files. I generated the code and I was able to perform the fit of all these files simultaneously.
My problem is to export the results of each fit as single txt files, because I have then to extract specific values of the function to perform other analyses.
I hope I have been clear enough.
Thank you.
Cristina
  2 commentaires
Scott Ronquist
Scott Ronquist le 29 Jan 2021
Hello Cristina,
Are you using the fit command to create a fitobject? And you would like to save the output of fitobject to a text file? To do this you can use the diary function in MATLAB to store all results output to the command window in a text file. See Example below:
% load data
load census;
% fit data
f=fit(cdate,pop,'poly2');
% capture output in "myDiaryFile.txt"
diary myDiaryFile.txt
f
diary off
Please let me know if I am understanding your problem correctly, thanks!
Cristina Totaro
Cristina Totaro le 1 Fév 2021
Hi,
thank you very much for your reply.
Actually, I need to save only the values of the coefficients of the fuction (it is a poly3), not all the info, because I have to use these values to obtain some specific values of the fuction itself.
However, your suggestion is useful for another step of my process.
Thank you again.
Cristina

Connectez-vous pour commenter.

Réponses (1)

Jiarui Kang
Jiarui Kang le 29 Juin 2022
The data of a fitted curve can be extracted using feval function.
First right click on your fitted data in curve fitting tool box and save it in your workspace. Then use feval function to evaluate the value for inputs.
for example
x=[0:0.0005:0.16];
y=feval(fittedmodel,x);

Catégories

En savoir plus sur Entering Commands dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by