how to off figure popup window?
조회 수: 38(최근 30일)
표시 이전 댓글
Hi,
In my script, I am trying to save the generated figures from matlab to word file, while saving the figure a continuous pop-up window is generating.
I want to hide the figure pop-up window. I tried with the following command,
figure(visible,'off');
but its not stopping the pop-up window instead hide plot in figure pop-up window and saved word file which doesnot have plots (it has only blank boxes with no plot in it).
is there any way to reslove this problem?
Thank you in advance!
답변(1개)
Richard Quist
2021년 11월 29일
You didn't mention what version of MATLAB you are using but something like this should work:
% create a figure and remember its handle
f = figure('visible', 'off');
% create a plot inside that figure
plot(rand(4));
% copy the figure to the clipboard
print(f, '-dmeta');
If you're using R2020a or later you may be able to replace the print call above with a call to copygraphics
% available in R2020a and later
copygraphics(f);
참고 항목
범주
Find more on Subplots 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!