Opening diffrent ezplot in a new/multiple window
Ältere Kommentare anzeigen
Hello! I dont manage to open two diffrent ezplot in a new window for each of them. here the 2 functions: syms x y=1/20*x^2-6/25*x+1/(x^2+1) ezplot(y)
yprim=diff(y) ezplot(yprim)
ezplot(f,fign) displays the plot in the plot window with the number fign. The title of each plot window contains the word Figure and the number, for example, Figure 1, Figure 2, and so on. If the plot window with the number fign is already opened, ezplot overwrites the content of that window with the new plot.
So I tried ezplot(y,fign),ezplot(y,fig1),ezplot(y,fign 1),ezplot(y,fig 1), then I triead all variants with '' (like ezplot(y,'fign'). I tried ezplot(y,test1) ....I just dont know how to do it, please help. I want each plot in one window to compair them (but dont want them in one graph, cause it is not requestet in the assignment I am doing)
Thanks!!
Antworten (3)
Mischa Kim
am 20 Feb. 2014
Bearbeitet: Mischa Kim
am 20 Feb. 2014
Hello Dennis, put a figure command between each of the ezplot commmands.
Alternatively, try and see how you like this one:
syms x
y=1/20*x^2-6/25*x+1/(x^2+1)
yprim=diff(y)
subplot(2,1,1)
ezplot(y)
subplot(2,1,2)
ezplot(yprim)
1 Kommentar
Mischa Kim
am 21 Feb. 2014
Bearbeitet: Mischa Kim
am 21 Feb. 2014
As pointed out above, use the figure command.
syms x
y=1/20*x^2-6/25*x+1/(x^2+1)
yprim=diff(y)
figure
ezplot(y)
figure
ezplot(yprim)
Please use comments for follow-up comments and questions, not answers.
Dennis
am 21 Feb. 2014
0 Stimmen
Dennis
am 21 Feb. 2014
0 Stimmen
1 Kommentar
Mischa Kim
am 21 Feb. 2014
Yep. See my first answer above.
Kategorien
Mehr zu Graph and Network Algorithms 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!