How do I approximate a polynomial using the Symbolic Toolbox?

2 views (last 30 days)

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
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

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!