%EccDiff01 grafico EDO 003 clearvars; close all; clc; %% datos inciales t = 0:0.01:5; yt = t.^4 + t.^4.*exp(t) - t.^4.* exp(t); figure(1) plot(t,yt); title('EDO 1er Orden 003'); xlabel('t (s)'); ylabel('y(t) (m)') legend('y(t)'); axis([0,5,0,1.1*max(yt)]); grid on; box on;