How do I approximate a polynomial using the Symbolic Toolbox?

I would like to approximate a polynomial using the Symbolic Toolbox.

 Accepted Answer

To approximate a polynomial, use the POWMOD function from the Extended Symbolic Toolbox. Here is an example which does this:
syms x y
z=expand((x+y)^10)
maple('readlib(powmod)')
maple('powmod',z,1,x^6,x)

More Answers (0)

Categories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!