How to export data and plot from app designer to excel?

I have created a plot using a table and used slider to smooth the graph, i don't know how to obtain the smoothed value table and the smoothed plot to excel in Matlab app designer

 Respuesta aceptada

Kevin Holly
Kevin Holly el 22 de Ag. de 2022
Please see the app attached. You can use writetable to save your data to an Excel file. You can use xlswritefig found on the File Exchange to save the figure to an Excel file.

4 comentarios

Please find the attached app. i want to export "Smooth Static Effort Filtered Graph" to specific location in an excel file
When i run the app, i get this error for export plot, please support
Download the funciton from the File Exchange here:
Here are changes I would make to your app:
function ExportButtonPushed(app, event)
% app.Result = 'result.xlsx';
[filename, folder] = uiputfile("result.xlsx");
% writetable(app.stf,app.Result)
writetable(app.stf,fullfile(folder,filename))
% exportgraphics(app.UIAxes2,'result.pdf')
xlswritefig(app.UIAxes2,fullfile(folder,filename))
end
Thankyou, This works great :), I'll be back with more doubts related to my app >.<

Iniciar sesión para comentar.

Más respuestas (0)

Preguntada:

el 22 de Ag. de 2022

Comentada:

el 22 de Ag. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by