Enlarge step response plot
Ältere Kommentare anzeigen

I have a step response plot of two transfer functions. Both are almost coincident,so I want to enlarge a specific portion of the plot (and make it small in size) and show it on the same original plot by an aroow. How shall I do it? Please check this image. What I need to do is something like what is given in image i.e magnify small part
Akzeptierte Antwort
Weitere Antworten (1)
Image Analyst
am 11 Jul. 2017
Try using the Position, OuterPosition, and InnerPosition properties to adjust the size of your graph
ax = gca;
ax.Units = 'normalized';
ax.Position = [.2, .2, .6, .7]; % Whatever....
3 Kommentare
Rakesh Jain
am 11 Jul. 2017
Image Analyst
am 11 Jul. 2017
I don't think you can have a graph on top of another graph. Would it be possible for you to have the second, magnified graph not overlapping the first graph? If so, it's pretty easy, just have two axes.
Rakesh Jain
am 12 Jul. 2017
Kategorien
Mehr zu Tuning Goals finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!