필터 지우기
필터 지우기

How to plot a number of curves on the same plot ?

조회 수: 6 (최근 30일)
Ahmed
Ahmed 2013년 2월 9일
want to plot i number of curves on the same X axis and Y axis and label each curve with a number ? how to do this? Thx in Advance

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 9일
편집: Azzi Abdelmalek 2013년 2월 9일
%Example
x=0:0.1:10;
y1=sin(x);
y2=cos(x)
plot(x,y1,'r',x,y2,'g');
legend({'curv1','curv2'})
Look at
doc plot

추가 답변 (2개)

Image Analyst
Image Analyst 2013년 2월 9일
You can put your plotting in a "for" loop. At each iteration, just plot your additional curve. You actually can do it without a loop if you just want to plot all the things and have them all already. Just make sure you call "hold on" after the first one, otherwise subsequent plots will blow away the earlier plots.
plot(x1,y1);
hold on;
plot(x2,y2);
plot(x3,y3);
plot(x4,y4);

Shashank Prasanna
Shashank Prasanna 2013년 2월 9일
I prefer using LINE instead of PLOT since plot tends to reset some properties which maybe unexpected and undesirable.
>> x = 0:2*pi*10;
>> x = 0:0.01:2*pi*10;
>> y1 = sin(x);
>> y2 = cos(x);
>> line(x,y1,'LineStyle','-','Color','r')
>> line(x,y2,'LineStyle','.','Color','b')

카테고리

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