donde: k=año de inicio t=matriz de variables a(n) j=año final
function [f]=Interpolacion(k,t,j) c=1; for n=k:j disp(n); disp(t(1)*(n^4)+t(2)*(n^3)+t(3)*(n^2)+t(4)*(n)+t(5)); A(c)=n; B(c)=t(1)*(n^4)+t(2)*(n^3)+t(3)*(n^2)+t(4)*(n)+t(5); c=c+1; end plot(A,B) end
No hay comentarios:
Publicar un comentario