필터 지우기
필터 지우기

plotting multiple vectors on one graph

조회 수: 55 (최근 30일)
Steve Avilesmejia
Steve Avilesmejia 2020년 9월 18일
답변: Alan Stevens 2020년 9월 18일
y1 =
308.0035
301.1535
301.0850
296.2900
293.5500
y2 =
313.8800
305.8800
305.8000
300.2000
297.0000
y3 =
325.0035
318.1535
318.0850
313.2900
310.5500
im not sure how to plot these on one graph?

답변 (1개)

Alan Stevens
Alan Stevens 2020년 9월 18일
Like this perhaps:
>> x = 1:5;
>> plot(x,y1,'o-',x,y2,'*-',x,y3,'s-')

카테고리

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