How to get my original x & y data from saved sfit?
49 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Meh
el 8 de Mzo. de 2016
Respondida: Meh
el 23 de Mzo. de 2016
I have done curve fitting a few months ago. Saved my session as sfit. I lost my original X and Y data. Can I get the original x and y data from the sfit? I tried to Print the curve and Brush and export the points but I couldn't. Any help?
0 comentarios
Respuesta aceptada
Titus Edelhofer
el 8 de Mzo. de 2016
Hi,
the .sfit is basically a .mat file. So you can load it:
v = load('yourfile.sfit', '-mat');
Depending on the number of fits this gives the data that were used in the fit:
[x,y] = v.savedSession.AllFitdevsAndConfigs{1}.Fitdev.FittingData.getCurveValues
Titus
Más respuestas (1)
Ver también
Categorías
Más información sobre Fit Postprocessing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!