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
Interp - inert polynomial interpolation function
Calling Sequence
Interp(x, y, v)
Interp(x, y)
Parameters
x
-
list or Vector of independent values, x[1],..x[n]
y
list or Vector of dependent values, y[1],..y[n]
v
variable name to be used in polynomial
Description
The Interp function is a placeholder for polynomial interpolation. It is used in conjunction with mod and modp1.
The call Interp(x, y, v) mod p computes the polynomial of degree at most in the name v that interpolates the points (x[1],y[1]), (x[2], y[2]),..., (x[n], y[n]) mod p. The points must be from a finite field.
The call modp1(Interp(x, y), p) computes the interpolation polynomial in the modp1 representation where x and y must be lists.
All the independent values in x must be distinct. In other words, a particular value modulo p must not occur more than once in x.
Examples
See Also
CurveFitting[PolynomialInterpolation], Eval, mod, modp1
Download Help Document