return column vector (t(i+1) & y(i+1)) instead of row vector
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ken
el 3 de Abr. de 2022
Respondida: Walter Roberson
el 3 de Abr. de 2022
function [y,t] = euler_timestep(f,t0,tf,alpha,N)
h=(tf-t0)/N;
t(1)=t0;
y(1)=alpha;
for i=1:N
t(i+1)=t(i)+h;
y(i+1)=y(i)+h*f(t(i),y(i));
end
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!