How to plot more figures

I have many input data(x) and function(F) to calculate output(y). I would like to plot y. I have the code:
x=[1 2.5 0.4 3...1] (for example 100 of them)
for i=100
a=x(i)
y=F(a)
plot(y)
end
when I run it, its only one figure shown up. So anyone can help to plot 100 of them? ( hope my question is clear to understand)

 采纳的回答

after plotting the first time issue any one of these three cmmands:
figure
hold on
hold all
Your loop also should be
for i = 1:100, rather than for i = 100

2 个评论

I tried:
plot(y)
hold on
hold all
but all of them are plotted in the same figure, but how to plot 100 separate figures?
I got it.Thanks

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by