Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
convert/horner
Calling Sequence
convert(f, 'horner', x)
Parameters
f
-
polynomial or rational function in x, or set, list or relation of these; expression to be converted
x
(optional) name, list of names or set of names; the variable or variables with respect to which the conversion is performed
Description
The convert(f, 'horner', x) command converts the input to horner form with respect to x, or the names in x if this argument is a list or set.
If x is omitted, it is taken as indets(f,name).
If x is given as a list or set of names, the conversion is applied recursively to the coefficients of f in the first variable given. A list allows for control over the order of the conversions.
If f is a set, list or relation, the result is map(convert, f, 'horner', x).
Any subexpressions of f which are not either polynomials or rational functions in x are frozen via a call to frontend prior to conversion.
Examples
See Also
convert, frontend
Download Help Document