Saving a figure without menu?
Show older comments
There is a figure('Menu','none') and a plot inside that figure. nothing else. is it possible to save it in .fig or .jpg? or extract data?
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 30 Aug 2013
Edited: Azzi Abdelmalek
on 30 Aug 2013
x=0:0.1:10;
y=sin(x)
h=plot(x,y)
saveas(h,'filename.jpg')
2 Comments
thomas mann
on 30 Aug 2013
Azzi Abdelmalek
on 30 Aug 2013
Try this
set(gcf,'menubar','figure')
Categories
Find more on Graphics Performance in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!