Saving large files using uisave

Hi, Is there any way to specify the '-v7.3' switch (i.e. allow saving large files) from uisave?

 Accepted Answer

use uiputfile instead. Credit to Jan.
[filename, filepath] = uiputfile('*.mat', 'Save the project file:');
FileName = fullfile(filepath, filename);
save(FileName, 'yourVariable', '-v7.3');

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products

Release

R2017a

Asked:

on 4 Jun 2018

Answered:

on 21 Sep 2018

Community Treasure Hunt

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

Start Hunting!