Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Not getting any plots on my graph
조회 수: 2 (최근 30일)
이전 댓글 표시
My graph using parametric equations isn't showing any plots, just an empty graph and I'm unsure why.
t=linspace(0, 20);
x=4 + sqrt(t);
y=5+cos(2*t)/(t+1);
plot(x,y)
xlabel 'x displacement'
ylabel 'y displacement'
댓글 수: 1
per isakson
2017년 12월 15일
편집: per isakson
2017년 12월 15일
Replace
y=5+cos(2*t)/(t+1);
by
y=5+cos(2*t)./(t+1);
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!