App Designer data to mat file
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Daniel
el 26 de Oct. de 2022
Hi,
I need to save the data of the variables in my app designer to a mat file (I dont know right now if I need to create a mat file from 0 or just copy the results to a existing mat file). The data are numeric fields value.
2 comentarios
Respuesta aceptada
Adam Danz
el 28 de Oct. de 2022
Editada: Adam Danz
el 28 de Oct. de 2022
- If you are saving the data from with an app callback function, then you just need to use save to save the data to a mat file.
- If you are saving the data from outside of the app such as from the base workspace, then you need to first access the data. To do that, the data should be stored as an app property (see step-by-step guide) and you need the handle to you app. See Three ways to access your app handle. Once you have the app handle, you can easily access any property including the property that stores your data and can save it using save().
Let us know if you have any follow-up questions.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer 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!