%EccDiff01 grafico EDO 002 clearvars; close all; clc; %% datos inciales t = 0:0.01:5; C1 = 1; C2 = 2; C3 = 3; C4 = 4; C5 = 5; yt1 = C1*exp(-t.^3/3); yt2 = C2*exp(-t.^3/3); yt3 = C3*exp(-t.^3/3); yt4 = C4*exp(-t.^3/3); yt5 = C5*exp(-t.^3/3); figure(1) plot(t,yt1,t,yt2,t,yt3,t,yt4,t,yt5); title('EDO 1er Orden 002'); xlabel('t (s)'); ylabel('y(t) (m)') legend('y_1(t)','y_2(t)','y_3(t)','y_4(t)','y_5(t)'); axis([0,5,0,5.5]); daspect([1,1,1]); grid on; box on;