i don't know why this error ,,

x = 0:2:50;
y = y+(9.8-(12.5*y/68.1)).*dt;
dt=2;
plot(x,y)
i draw graph but
??? Error using ==> times Matrix dimensions must agree.
Error in ==> Untitled at 2 y = y+(9.8-(12.5*y/68.1)).*dt;
plz help me

댓글 수: 1

bym
bym 2011년 3월 27일
are you sure that is the error your getting?

답변 (1개)

bym
bym 2011년 3월 27일

0 개 추천

Perhaps you want:
x = 0:2:50;
dt=2;
y = x+(9.8-(12.5.*x/68.1)).*dt;
plot(x,y)

이 질문은 마감되었습니다.

태그

질문:

Lee
2011년 3월 27일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by