Los autores han hecho su mejor esfuerza en la preparación de este material. Se distribuye gratuitamente con la esperanza de que sea útil, pero sin ninguna garantía expresa o implícita respecto a la exactitud o completitud del contenido.
h=0.3; % Elegimos el tamaño del paso
t(1)=0; % Tiempo inicial
tf=12; % Tiempo final
y(1)=10; % Condición inicial
puntos=floor((tf-t(1))/h)+1; % Puntos de la tabulación
for i=2:puntos
k1=-0.25*y(i-1)+1; %calculamos la derivada
y(i)=y(i-1)+k1*h; %calculamos el nuevo punto
t(i)=t(i-1)+h; %calculamos el nuevo tiempo
end
plot(t,y);
grid on
[1] Cellier, F.E . (1991), Continuous System Modeling, Springer-Verlag, NewYork.
[2] Dennis Freeman. 6.003 Signals and Systems. Fall 2011. Massachusetts Institute of Technology: MIT OpenCourseWare, https://ocw.mit.edu. License: Creative Commons BY-NC-SA.