how to plot the curve in matlab

조회 수: 1 (최근 30일)
Amy Topaz
Amy Topaz 2022년 4월 2일
댓글: Arif Hoq 2022년 4월 2일
How to plot the curve in matlab using the given x and y points. I am looking for the 2 curves on the same plot.
X Y1 Y2
57 78.2 165.1
87 67.06 101.8
107 64.66 88.7
257 61.43 63.58
507 61.45 61.47
1007 60.51 60.91

채택된 답변

Arif Hoq
Arif Hoq 2022년 4월 2일
편집: Arif Hoq 2022년 4월 2일
A=[57 78.2 165.1
87 67.06 101.8
107 64.66 88.7
257 61.43 63.58
507 61.45 61.47
1007 60.51 60.91];
x=A(:,1);
Y1=A(:,2);
Y2=A(:,3);
plot(x,Y1,x,Y2)
legend('Y1','Y2')
  댓글 수: 2
Amy Topaz
Amy Topaz 2022년 4월 2일
Thank you, also how to indicate the points on the curves?
Arif Hoq
Arif Hoq 2022년 4월 2일
try this:
plot(x,Y1,'o-',x,Y2,'d-')

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by