saving large figures in Matlab

조회 수: 28 (최근 30일)
Dawid Strzelczyk
Dawid Strzelczyk 2021년 3월 25일
답변: Gaurav Garg 2021년 3월 27일
Hi
is there a way of saving large figures (>2GB) in matlab?
savefig(fig1, strcat(self.imageAddress, '.fig'), 'compact');
results in error: 'Error closing file ... The file may be corrupt.'
I've also tried:
save(strcat(self.imageAddress, '.fig'), 'fig1', '-v7.3')
and the saving works but then
fig = openfig(strcat(self.imageAddress, '.fig'));
gives me an error: 'Invalid Figure file format.'
Best,
Dawid

답변 (1개)

Gaurav Garg
Gaurav Garg 2021년 3월 27일
Hi Dawid,
Kindly follow the below procedure -
  1. Go to Preferences
  2. Go to General
  3. Click MAT-Files and select "MATLAB Version 7.3 or later".
  4. Then save the figure using savefig().
You can also use the compact option as the last parameter (doc link) since this option results in smaller .fig files.

카테고리

Help CenterFile Exchange에서 Printing and Saving에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by