Export Curve Fitting tool results
26 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
laura brusco
el 21 de En. de 2020
Respondida: laura brusco
el 3 de Feb. de 2020
Hi, I am using the MATLAB curve fitting tool to create, through interpolation, a trend line from a series of observed data (frequencies). In previous versions of MATLAB, the Curve Fitting Tool had the "Analyze" function which created a table with the values of the interpolating function for each value of the independent variable x and said table could easily be copied to excel.
In the most recent version of MATLAB it doesn't seem to me that this function exists anymore; how can i create interpolation results in matlab and then report them in an excel table?
Thank you
Laura
0 comentarios
Respuesta aceptada
Jakob B. Nielsen
el 21 de En. de 2020
You can create such a table yourself (although I dont understand how you get the interpolation function without having such a table in the first place? So I might simply not understand what you mean)
In the curve fitting tool, take your interpolant fit (its down in the table of fits in the bottom), rightclick it, and save to workspace. The default name is fittedmodel but you can name it whatever.
Then - for example, if your x is x=[1 2 3 4 5];, you can simply type in the command window y=fittedmodel(x), and then you have it.
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Measurements and Feature Extraction en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!