필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Not getting any plots on my graph

조회 수: 1 (최근 30일)
Oskar
Oskar 2017년 12월 15일
마감: MATLAB Answer Bot 2021년 8월 20일
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
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!

Translated by