フィルターのクリア

matlab code for Euler's method

1 回表示 (過去 30 日間)
Mary Jeppson
Mary Jeppson 2016 年 5 月 26 日
コメント済み: Mary Jeppson 2016 年 5 月 27 日
I have written this code for my class, but keep getting 'index exceeds matrix dimensions' can anyone tell me what's wrong with it?
%%Problem 1.9
%Use Euler's method to solve for the depth of a tank
A = 1250; %area in m^2
Q = 450; %m^3/d
h = .5; %step size
t = 0:h:10; % time in d
dydt = @(t) 3.*Q./A.*sin(t).^2-Q./A
y(1) = 0;
for k=1:length(t)-1
y(k+1) = y(k)+dydt(v(k))*h
end
[t' y']
I greatly appreciate the help.

採用された回答

Walter Roberson
Walter Roberson 2016 年 5 月 26 日
What is v ?
  1 件のコメント
Mary Jeppson
Mary Jeppson 2016 年 5 月 27 日
Thanks.. That was the problem.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by