Presentation is loading. Please wait.

Presentation is loading. Please wait.

ES 240: Scientific and Engineering Computation. InterpolationPolynomial  Definition –a function f(x) that can be written as a finite series of power functions.

Similar presentations


Presentation on theme: "ES 240: Scientific and Engineering Computation. InterpolationPolynomial  Definition –a function f(x) that can be written as a finite series of power functions."— Presentation transcript:

1 ES 240: Scientific and Engineering Computation. InterpolationPolynomial  Definition –a function f(x) that can be written as a finite series of power functions like –f n is a polynomial of order n –A polynomial is represented by coefficient vector from highest power. –p1=[3 -5 -7 1 9]  p1(x) = 3x 4 - 5x 3 – 7x 2 + x + 9

2 ES 240: Scientific and Engineering Computation. Interpolation Polynomial Operations  poly(r) –convert roots to a polynomial –r=[ 1 2 3 ]; poly(r)  roots(p) –find roots of a polynomial – p=[ 2 3 4 ] –roots(p)  Y = polyval(p, x) –returns the value of a polynomial, p(x). –P is a vector of length N+1 whose elements are the coefficients of the polynomial in descending powers. –p=[3 -5 -7 1 9]  p(x) = 3x 4 - 5x 3 – 7x 2 + x + 9

3 ES 240: Scientific and Engineering Computation. Interpolation Polynomial Operations  P = polyfit(x, y, n) –Returns the least squares fit coefficients of a polynomial p(x) of degree n –P is of length N+1.  conv(p1,p2) –multiply two polynomials p1 and p2 –conv(p1,p2)  [q r]=deconv(p1,p2) –polynomials p1 divide by p2, where q is quotient and r is remainder –[q r]=deconv(p1,p2)

4 ES 240: Scientific and Engineering Computation. Interpolation Polynomial Operations  polyint(p,c) –integrate of polynomial p with integration constant c (default 0) –polyint(p) –polyint(p,1)  polyder(p) –differentiate polynomial p respective to x –>> polyder(p)

5 ES 240: Scientific and Engineering Computation. Interpolation Curve Fitting  Applications –Estimating the value of points between discrete values –Simplifying complicated functions  Methods –Interpolation Data are very precise curve passes through all points – curve fitting Data are just approximations curve represent a general trend of the data

6 ES 240: Scientific and Engineering Computation. Interpolation Curve Fitting and Interpolation Curve Fitting (linear or non-linear) Linear Interpolation (most popular interpolation) Other Interpolation (higher order polynomial, spline, nearest,…)

7 ES 240: Scientific and Engineering Computation. Interpolation Linear Interpolation  The linear interpolation is achieved by fitting a line between two known data points  The resulting formula based on known points x 1 and x 2 and the values of the dependent function at those points is:

8 ES 240: Scientific and Engineering Computation. Interpolation Quadratic (Polynomial) Interpolation  One problem that can occur with solving for the coefficients of a polynomial is that the system to be inverted is in the form:  Matrices such as that on the left are known as Vandermonde matrices, and they are very ill-conditioned - meaning their solutions are very sensitive to round-off errors.  The issue can be minimized by scaling and shifting the data.

9 ES 240: Scientific and Engineering Computation. Interpolation Newton Interpolating Polynomials  Another way to express a polynomial interpolation is to use Newton’s interpolating polynomial.  This is a achieved by an extension to linear interpolation

10 ES 240: Scientific and Engineering Computation. Interpolation Newton Interpolating Polynomials (cont)  The second-order Newton interpolating polynomial introduces some curvature to the line connecting the points, but still goes through the first two points.  The resulting formula based on known points x 1, x 2, and x 3 and the values of the dependent function at those points is:

11 ES 240: Scientific and Engineering Computation. InterpolationGeneralization  An (n-1) th Newton interpolating polynomial has all the terms of the (n-2) th polynomial plus one extra.  The general formula is: where and the f[…] represent divided differences.

12 ES 240: Scientific and Engineering Computation. Interpolation Divided Differences  Divided difference are calculated as follows:  Divided differences are calculated using divided difference of a smaller number of terms:

13 ES 240: Scientific and Engineering Computation. InterpolationExample 15.1 Do by hand Use the newtint function

14 ES 240: Scientific and Engineering Computation. Interpolation Lagrange Interpolating Polynomials  Weighted average of the two values being connected  The differences between a simple polynomial and Lagrange interpolating polynomials for first and second order polynomials is:  where the L i are weighting coefficients that are functions of x.

15 ES 240: Scientific and Engineering Computation. Interpolation Lagrange Interpolating Polynomials (cont)  The first-order Lagrange interpolating polynomial may be obtained from a weighted combination of two linear interpolations, as shown.  The resulting formula based on known points x 1 and x 2 and the values of the dependent function at those points is:

16 ES 240: Scientific and Engineering Computation. Interpolation Lagrange Interpolating Polynomials (cont)  In general, the Lagrange polynomial interpolation for n points is:  where L i is given by:

17 ES 240: Scientific and Engineering Computation. InterpolationExample 15.1 Solve by hand Use the lagrange function

18 ES 240: Scientific and Engineering Computation. InterpolationExtrapolation  Extrapolation is the process of estimating a value of f(x) that lies outside the range of the known base points x 1, x 2, …, x n.  Extrapolation represents a step into the unknown, and extreme care should be exercised when extrapolating!

19 ES 240: Scientific and Engineering Computation. Interpolation Extrapolation Hazards  World population using a 7 th order polynomial extrapolation.

20 ES 240: Scientific and Engineering Computation. InterpolationOscillations  Higher-order polynomials can not only lead to round-off errors due to ill-conditioning, but can also introduce oscillations to an interpolation or fit where they should not be.  In the figures below, the dashed line represents a function, the circles represent samples of the function, and the solid line represents the results of a polynomial interpolation:

21 ES 240: Scientific and Engineering Computation. Interpolation Introduction to Splines  An alternative approach to using a single (n-1) th order polynomial to interpolate between n points is to apply lower-order polynomials in a piecewise fashion to subsets of data points.  These connecting polynomials are called spline functions.  Splines minimize oscillations and reduce round- off error due to their lower-order nature.

22 ES 240: Scientific and Engineering Computation. Interpolation Higher Order vs. Splines  Splines eliminate oscillations by using small subsets of points for each interval rather than every point. This is especially useful when there are jumps in the data: a)3 rd order polynomial b)5 th order polynomial c)7 th order polynomial d)Linear spline seven 1st order polynomials generated by using pairs of points at a time

23 ES 240: Scientific and Engineering Computation. Interpolation Spline Development a) First-order splines find straight-line equations between each pair of points that Go through the points b) Second-order splines find quadratic equations between each pair of points that Go through the points Match first derivatives at the interior points c) Third-order splines find cubic equations between each pair of points that Go through the points Match first and second derivatives at the interior points Note that the results of cubic spline interpolation are different from the results of an interpolating cubic.

24 ES 240: Scientific and Engineering Computation. Interpolation Spline Development  Spline function (s i (x))coefficients are calculated for each interval of a data set.  The number of data points (f i ) used for each spline function depends on the order of the spline function.

25 ES 240: Scientific and Engineering Computation. Interpolation Cubic Splines  While data of a particular size presents many options for the order of spline functions, cubic splines are preferred because they provide the simplest representation that exhibits the desired appearance of smoothness.  In general, the i th spline function for a cubic spline can be written as:  For n data points, there are n-1 intervals and thus 4(n-1) unknowns to evaluate to solve all the spline function coefficients.  There is no ‘one equation’ that can represent the whole spline function on the domain

26 ES 240: Scientific and Engineering Computation. Interpolation Piecewise Interpolation in MATLAB  MATLAB has several built-in functions to implement piecewise interpolation. The first is spline: yy=spline(x, y, xx)  This performs cubic spline interpolation

27 ES 240: Scientific and Engineering Computation. InterpolationExample  Generate data: x = linspace(-1, 1, 9); y = 1./(1+25*x.^2);  Calculate 100 model points and determine not-a-knot interpolation xx = linspace(-1, 1); yy = spline(x, y, xx);  Calculate actual function values at model points and data points, the 9-point (solid), and the actual function (dashed), yr = 1./(1+25*xx.^2) plot(x, y, ‘o’, xx, yy, ‘-’, xx, yr, ‘--’)

28 ES 240: Scientific and Engineering Computation. Interpolation MATLAB’s interp1 Function  While spline can only perform cubic splines, MATLAB’s interp1 function can perform several different kinds of interpolation: yi = interp1(x, y, xi, ‘method’) –x & y contain the original data –xi contains the points at which to interpolate –‘method’ is a string containing the desired method: ‘nearest’ - nearest neighbor interpolation ‘linear’ - connects the points with straight lines ‘spline’ - not-a-knot cubic spline interpolation ‘pchip’ or ‘cubic’ - piecewise cubic Hermite interpolation

29 ES 240: Scientific and Engineering Computation. InterpolationLab  15.9


Download ppt "ES 240: Scientific and Engineering Computation. InterpolationPolynomial  Definition –a function f(x) that can be written as a finite series of power functions."

Similar presentations


Ads by Google