Saturday 15 March 2014

calculus - Using Taylor Polynomials Programmatically in Maple -


I am trying to use a teller program in maple, but the following does not work ...

  t [6]: = Taylor (sin (x), x = p / 4,6); Convert (T [6], Palinom, X); F: = proc (x) convert (t [6], polynom, x); End proc; F (1);  

None of the following work either:

  • f: = convert (t [6], palinom);
  • f: = x-> (convert (t [6], polynom, x)
  • f: = x -> 6], polynom;);
  • Convert to f: = x-> (t [6], plynom, x); .

What is the f

convert to definition of

Defining T as the function may also be natural.

  T: = y-> gt; Subs (x = y, convert (teller) (x (x), x = p / 4,6), polynom); T (1);  

No comments:

Post a Comment