#Métodos Numéricos - 2023. IMERL, Fing #Código de ejemplo para el ejercicio 11 del práctico 5 clear all; clf; t=0.5:0.5:4; y=[6.80, 3.00, 1.50, 0.75, 0.48, 0.25, 0.20, 0.15]; n=size(t)(2); f=@(X,t) X(1).*(exp(X(2).*t)); J1=@(X,t) [exp(X(2).*t)]; J2=@(X,t) [X(1)*t.*exp(X(2).*t)]; ############################### ##### Parte a) ################ ############################### kmax=50; tol=1e-4; k=1; x0=[1,1]'; X=[x0]; dif=inf; #Gauss-Newton while k