function y = serie_Taylor(df_x0, x, x0) y = 0*x ; for i = 1 : length(df_x0) n = i - 1 ; y = y + df_x0(i)/factorial(n) * (x-x0) .^ n ; end end