Saving large files using uisave
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Yoni Sher
el 4 de Jun. de 2018
Respondida: Clay
el 21 de Sept. de 2018
Hi, Is there any way to specify the '-v7.3' switch (i.e. allow saving large files) from uisave?
0 comentarios
Respuesta aceptada
Clay
el 21 de Sept. de 2018
use uiputfile instead. Credit to Jan.
[filename, filepath] = uiputfile('*.mat', 'Save the project file:');
FileName = fullfile(filepath, filename);
save(FileName, 'yourVariable', '-v7.3');
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop uifigure-Based Apps 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!