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
2011 年 3 月 27 日
are you sure that is the error your getting?
回答 (1 件)
bym
2011 年 3 月 27 日
Perhaps you want:
x = 0:2:50;
dt=2;
y = x+(9.8-(12.5.*x/68.1)).*dt;
plot(x,y)
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!