Opening diffrent ezplot in a new/multiple window
2 views (last 30 days)
Show older comments
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!!
0 Comments
Answers (3)
Mischa Kim
on 20 Feb 2014
Edited: Mischa Kim
on 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 Comment
Mischa Kim
on 21 Feb 2014
Edited: Mischa Kim
on 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.
See Also
Categories
Find more on Particle & Nuclear Physics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!