フィルターのクリア

export data from fitresult

83 ビュー (過去 30 日間)
Cristina Totaro
Cristina Totaro 2021 年 1 月 29 日
回答済み: Jiarui Kang 2022 年 6 月 29 日
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 件のコメント
Scott Ronquist
Scott Ronquist 2021 年 1 月 29 日
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 2021 年 2 月 1 日
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

サインインしてコメントする。

回答 (1 件)

Jiarui Kang
Jiarui Kang 2022 年 6 月 29 日
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);

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by