필터 지우기
필터 지우기

How to plot more figures

조회 수: 2 (최근 30일)
Vivi
Vivi 2013년 7월 18일
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)

채택된 답변

Iain
Iain 2013년 7월 18일
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
Vivi
Vivi 2013년 7월 18일
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?
Vivi
Vivi 2013년 7월 18일
I got it.Thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by