How to plot a 2d parametric equation
조회 수: 198 (최근 30일)
이전 댓글 표시
Equation is x=2t+4, y=t-1
This is what I did:
t=(1:5)
x=2t+4
t=t-1
plot (x,y)
And I obtained a diagonal line.
Note: t=(1:5) is not part of the exercise, I just added to see what could happen.
댓글 수: 0
채택된 답변
KSSV
2016년 9월 28일
N = 100 ;
t = linspace(0,1,N) ;
x=2*t+4 ;
y=t-1 ;
plot(x,t)
댓글 수: 2
Rachel A. Eaglin
2021년 2월 19일
편집: Rachel A. Eaglin
2021년 2월 19일
You can write this on the line after the plot() command
ylim([-1 4]);
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!