How can i plot f(i),g(i),h(i) in one figure(i)?
1 view (last 30 days)
Show older comments
I want to plot each three diagrams in one figure
0 Comments
Accepted Answer
Star Strider
on 7 Jun 2014
Your loop becomes:
figure(1)
for i = 1:3
subplot(3,1,i)
. . .
plot(x,f(i),'-b', ... )
. . .
end
to get 3 stacked plots in one figure. Other configurations are possible. See the documentation on subplot for details.
6 Comments
More Answers (0)
See Also
Categories
Find more on Line 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!