Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

What is the best way to handle huge number of variables when preparing a UI?

1 visualización (últimos 30 días)
Nicholas
Nicholas el 28 de Jul. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Dear All, I coded a UI with MATLAB in which I require a lot of variables from the user. Since during the execution of the UI I need some of them I decided to save all data in *.mat files which are read and written during the execution of the UI. The problem of this implementation is that *.mat can be very big. Thus, I'm thinking about writing variables on file (perhaps binaries) Is there a smart and easy way of achieving this?

Respuestas (1)

Stephen23
Stephen23 el 28 de Jul. de 2016
Editada: Stephen23 el 28 de Jul. de 2016
The smart and easy way would be to use mat files.
mat files are binary files, and since version seven have been compressed as well:
Why reinvent the wheel ?
If you are worried about the filesize or save / load times, then read these:
PS: the most important thing to remember is to always load into a variable:
S = load(...);
and never load variables directly into the workspace.
  1 comentario
Nicholas
Nicholas el 28 de Jul. de 2016
Thank you very much for your quick reply. I'll take a look at the links you posted. In case I have other issues I'll write them down here.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by