how do i get the derivatives of the functions at "a" with out compromising my (x-a) terms any suggestions?

StackOverflow https://stackoverflow.com/questions/23182650

  •  06-07-2023
  •  | 
  •  

i need the function to output a P nth degree taylor polynomial centered at a here is the code i have , it works almost perfect but im not sure how to get the derivatives of the functions at "a" with out compromising my (x-a) terms... from what i see the diff(f,k) computes the kth derivative of f, but can not plug in the a. looks my code will require another matlab function that will do the plugging any suggestions?

function [P] = mytaylor(f,a,n) 
  f = sym(f);
  syms x;
  terms = 0;
  for k = 0:n
    fk = diff(f,k);
    terms = terms + fk*(x-a)^(k)/factorial(k);   
  end
  P = terms;
end
有帮助吗?

解决方案

You need to use the subs function to evaluate your symbolic expression fk at a.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top