Saving large files using uisave
9 views (last 30 days)
Show older comments
Hi, Is there any way to specify the '-v7.3' switch (i.e. allow saving large files) from uisave?
0 Comments
Accepted Answer
Clay
on 21 Sep 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 Comments
More Answers (0)
See Also
Categories
Find more on Develop uifigure-Based Apps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!