How can i transfer data from Matlab to Excel?
Mostrar comentarios más antiguos
I have no idea on how to write a code for transfering data from matlab to excel on appdesigner. i search a code but i just see code on how to transfer data from excel to matlab on appdesigner.
Respuestas (1)
Kevin Holly
el 15 de En. de 2023
0 votos
If you have data in a UITable and want to save it to a spreadsheet, you could create a callback function for a pushbutton to save the data to an Excel file.
You can access data with app.UITable.Data and save with the writetable function.
4 comentarios
MOUSSA FALL
el 16 de En. de 2023
Kevin Holly
el 16 de En. de 2023
You need to capitalize value, it is case-sensitive.
sDispo = app.StockDisponibleEditField.Value;
MOUSSA FALL
el 16 de En. de 2023
Kunal Kandhari
el 16 de En. de 2023
@MOUSSA FALL You need to change the first line of the function from this
sDispo = app.StockDisponibleEditField.value;
to this
sDispo = app.StockDisponibleEditField.Value;
Note: 'fields' are case sensitive.
Categorías
Más información sobre Spreadsheets en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!