Why doesn't my code for Euler's method work?
Mostra commenti meno recenti
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'.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Ordinary Differential Equations in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!