matlab code for Euler's method

1 次查看(过去 30 天)
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 ?

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by