Why doesn't my code for Euler's method work?
Ältere Kommentare anzeigen
function [T,N] = expgrowthEULER(N0,tmax,dt,r);
T=[0:dt:tmax]
N=zeros(length(T),1)
N(1)=N0
for i=2:length(T)
N(i)=N(i-1)+r*N(i-1)*dt
end
end
N0=1
r=0.1
tmax=10
dt=0.1
[T,N]=expgrowthEULER(N0,tmax,dt,r)
plot(T,N)
It says I have an undefined variable 't'.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Ordinary Differential Equations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!