I have a GUI which gets input from user and plots the step response. I want to export that graph only, not whole figure window. Can you help how to do?

3 views (last 30 days)
This is the figure saved from that GUI. As you can see that it has captured the whole figure window layout, however I want to save only the plot in the figure as an image on my computer.

Answers (1)

awezmm
awezmm on 2 Nov 2018
Can you just make a new figure window and put only the plot on that one and then export that new figure? Note that you can make the new figure invisible if you don't want the user to see it: f = figure('visible','off'); It will still be running in the background and you can programmatically export the stuff on the new figure f that only contains your plot
  6 Comments
GMD Baloch
GMD Baloch on 6 Nov 2018
You are right but my problem is that I will have a different plot every time because a drop down menu and depending on the user's choice my plot would change. Isn't there any way to extend the figure's contents upto the whole figure window?
awezmm
awezmm on 6 Nov 2018
try putting this before you plot:
axes('Units', 'normalized', 'Position', [0 0 1 1])
again, plot on everything separately, try not to use copy.
Here is an example of the command I gave: This is normal plotting:
figure
x = 0:pi/100:2*pi;
y = sin(x);
plot(x,y)
This is where the plot fills everything:
figure
x = 0:pi/100:2*pi;
y = sin(x);
axes('Units', 'normalized', 'Position', [0 0 1 1])
plot(x,y)
lemme know if you have any other trouble

Sign in to comment.

Categories

Find more on 2-D and 3-D Plots 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!