Azzera filtri
Azzera filtri

matlab code for Euler's method

1 visualizzazione (ultimi 30 giorni)
Mary Jeppson
Mary Jeppson il 26 Mag 2016
Commentato: Mary Jeppson il 27 Mag 2016
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.

Risposta accettata

Walter Roberson
Walter Roberson il 26 Mag 2016
What is v ?

Più risposte (0)

Categorie

Scopri di più su Programming in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by