Matlab R2018a does not save the whole figure
5 ビュー (過去 30 日間)
古いコメントを表示
Orestis Stylianou
2020 年 1 月 21 日
編集済み: Orestis Stylianou
2020 年 1 月 22 日
Hello,
I am working on some scripts that use this function (with some modifications). While the script is running the figure appears as expected. But when I export it, some parts of it are missing. I have tried
print(gcf, namem,'-dtiffn','-r600')
as well as manual export via the GUI. I keep getting the exact same parts cropped. What could be the issue? This is the 1st time facing such a weird problem.
2 件のコメント
BN
2020 年 1 月 21 日
編集済み: BN
2020 年 1 月 21 日
I have the same problem a few weeks ago. I told you what I've done, maybe useful for you. I'm worked with Matlab R2018b.
I was saved my work and close Matlab, then Restart the computer. after that I use:
clear all
close all
clc
Then I run my code from the first part again. After that everything was fixed for me.
I was saving the figure using this command:
DirectoryPath ='C:\Users\Behzad\Desktop\Figures';
whereToStore=fullfile(DirectoryPath,['filename', '.png']);
saveas(gcf, whereToStore);
I hope it helps you because I have exact same problem and it worked for me.
BN
2020 年 1 月 21 日
Dear Orestis,
fh = figure() %your figure
set(fh, 'Visible','off');
採用された回答
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!