%EccDiff01 grafico EDO 001 clearvars; close all; clc; %% datos inciales t = -5:0.01:5; yt = -sqrt( 5^2 - t.^2); figure(1) plot(t,yt); title('EDO 1er Orden 001'); xlabel('t (s)'); ylabel('y(t) (m)') legend('y(t)'); axis([-5.5,5.5,-5.5,0.5]); daspect([1,1,1]); grid on; box on;