plotting with changing variable values with switch case command

조회 수: 11 (최근 30일)
Meva
Meva 2015년 3월 3일
댓글: Robert Cumming 2015년 3월 3일
My whole program run with a loop . It is not showing the plot when I try below:
for nt =1:30001
...
switch nt
case 0
h1=plot(x,y,x,z,'-.xr');
case 10001
h2=plot(x,y,x,z,'-.xg');
case 20001
h3=plot(x,y,x,z,'-.xk');
case 22556
h4=plot(x,y,x,z,'-.xb');
end
hold on;
legend('1','2','3','4')
How can I plot all cases?

답변 (1개)

Robert Cumming
Robert Cumming 2015년 3월 3일
you need to specify the hold command before you start creating the plots.
  댓글 수: 2
Meva
Meva 2015년 3월 3일
편집: Meva 2015년 3월 3일
I have added
plot(h1,h2,h3,h4)
I used :
switch nt
case 0
h1=plot(x,y,x,z,'-.xr');
case 10001
h2=plot(x,y,x,z,'-.xg');
case 20001
h3=plot(x,y,x,z,'-.xk');
case 22556
h4=plot(x,y,x,z,'-.xb');
end
hold on;
plot(h1,h2,h3,h4)
legend('1','2','3','4')
but it does not recognise h1
Robert Cumming
Robert Cumming 2015년 3월 3일
your loop starts at 1 - h1 is only activated when your loop index is 0 (doesn't look like that happens in your example)

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

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by