Why isn't ezplot holding on?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alessio Nava
am 23 Apr. 2013
Bearbeitet: Walter Roberson
am 4 Sep. 2020
% settings for figure and axis
figuraT1 = figure('Name',title,'Position', get(0,'Screensize'));
maxfig(figuraT1,1);
assiT1 = axes('Parent', figuraT1);
dim=length(fsymarr);
for i=1:dim
ezplot(fsymarr(i),[min,max],figuraT1)
hold on
end
grid on
set(assiT1, 'LineWidth',1.5);
set(assiT1,'FontSize',14,'FontWeight','bold','FontAngle','Italic');
ylabel('Y Values');
xlabel('X Values');
Why does the function ezplot plot only the last function in the array fsymarr?
4 Kommentare
Walter Roberson
am 23 Apr. 2013
What does
class(fsymarr)
show ? I need to know in order to tell you the correct solution.
Also I will need to know your MATLAB version number.
Akzeptierte Antwort
Walter Roberson
am 24 Apr. 2013
Bearbeitet: Walter Roberson
am 4 Sep. 2020
The only thing I see at the moment is that ezplot() automatically adjusts the plot limits in ways such that the results of the earlier plot might only be partly visible (or out of range completely.)
Try changing to "hold on" instead of "hold all" -- but note that if you do that then the limits established first will be used, possibly leaving other plots mostly out of window.
2 Kommentare
Ricardo Ortega Bolaños
am 4 Sep. 2020
Hello Alessio Nava, I have the same problems with "hold on" and "ezplot", the axes change and the graph does not come out well. Could you give me some indication about your code, I would really appreciate it. Thank you.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Particle & Nuclear Physics finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!