CubicInterpolation - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Interpolation

  

NearestNeighborInterpolation

  

perform nearest neighbor interpolation

  

LowestNeighborInterpolation

  

perform lowest neighbor interpolation

  

HighestNeighborInterpolation

  

perform highest neighbor interpolation

  

LinearInterpolation

  

perform linear interpolation

  

CubicInterpolation

  

perform cubic interpolation

  

SplineInterpolation

  

perform spline interpolation

 

Calling Sequence

Parameters

Description

The Interpolating Functions

Options

Examples

Compatibility

Calling Sequence

f := NearestNeighborInterpolation(xdata, ydata, options)

f := NearestNeighborInterpolation(xydata, options)

f := LowestNeighborInterpolation(xdata, ydata, options)

f := LowestNeighborInterpolation(xydata, options)

f := HighestNeighborInterpolation(xdata, ydata, options)

f := HighestNeighborInterpolation(xydata, options)

f := LinearInterpolation(xdata, ydata, options)

f := LinearInterpolation(xydata, options)

f := CubicInterpolation(xdata, ydata, options)

f := CubicInterpolation(xydata, options)

f := SplineInterpolation(xdata, ydata, options)

f := SplineInterpolation(xydata, options)

f(x1, x2, ..., xn, options)

f(xvalues, options)

Parameters

xdata

-

a list, Array, DataFrame, DataSeries, Vector, or Matrix containing the independent coordinate(s) of each of the data points, given in one of several possible forms

ydata

-

a list, Array, DataSeries, or Vector containing the dependent coordinate of each of the data points

xydata

-

alternate input; a list, Array, DataFrame, or Matrix containing both the dependent and independent coordinates of each of the data points

xvalues

-

a numeric value, list, Vector, or Array containing the independent coordinate(s) of one or more points whose dependent coordinate will be approximated using interpolation

x1, x2, ..., xn

-

numeric values; independent coordinate(s) of one point whose dependent coordinate will be approximated using interpolation

options

-

(optional) equation(s) of the form keyword = value, where keyword is one of method, degree, endpoints, knots, uniform, verify, extrapolate, or container.

Description

• 

The NearestNeighborInterpolation, LowestNeighborInterpolation, HighestNeighborInterpolation, LinearInterpolation, CubicInterpolation, and SplineInterpolation commands take a finite set of distinct data points given by xdata and ydata (or xydata), and return an object. This object can interpolate to approximate the y-values corresponding to the points given in xvalues, or in x1, x2, ..., xn.  It considers an interpolant function f such that fx=y for all respective pairsx,y in xdata and ydata (or xydata). Such a function can be constructed using one of various methods; the commands differ in the method used.

• 

The commands described in this help page use the ArrayInterpolation command from the CurveFitting package. If you know all xvalues at which you want to evaluate the interpolant beforehand, you may get slightly better performance calling that command directly. Conversely, the commands on this help page provide better performance if you want to iteratively evaluate the interpolant at various points one by one. Furthermore, to actually compute and return interpolants, functions such as CurveFitting[Spline] and CurveFitting[RationalInterpolation] can be used instead.

• 

The commands described on this help page can interpolate numeric data in n dimensions, where n is any positive integer. For n>1, the independent data points must be in grid form. For independent data points that are not in grid form, you can use CurveFitting[Lowess], Interpolation[NaturalNeighborInterpolation], Interpolation[LinearTriangularInterpolation], Interpolation[RadialBasisFunctionInterpolation], Interpolation[InverseDistanceWeightedInterpolation], or Interpolation[Kriging].

• 

The list of independent coordinates of the data points, given in xdata, can be input in a number of different ways.  xdata can be:

– 

(preferred if n=1) a Vector, DataSeries, list, or one-dimensional Array of strictly increasing x-coordinates. The data set will then have size a1, where a1 is the length of xdata.

– 

(preferred if 1<n) a list of n Vectors, lists, or one-dimensional Arrays, one for each dimension of the data.  The jth Vector, list, or Array in the input must contain, in increasing order, all of the possible jth coordinates of the data points.  In this case, the block of data points will be assumed to lie on an a1 by a2 by ... by an grid, where aj is the length of the jth Vector or Array in the input.  The pth coordinate of the data point at index &lsqb;j1, j2, ..., jn&rsqb; (where 1jiai) will be equal to the apth element of the pth Array in the input.

– 

an Array of size a1 by a2 by ... by an by n, giving the independent coordinate(s) of each of a1 by a2 by ... by an data points as an ordered n-tuple. These coordinates must form a proper "grid" of values, and must be sorted in strictly increasing order along each dimension.  More formally, xdata&lsqb;j1, j2, ..., jn, p&rsqb; - xdata&lsqb;k1, k2, ..., kn, p&rsqb; must be zero if jp=kp, and must be positive if kp<jp.

– 

a list of n Arrays of size a1 by a2 by ... by an, where the jth array contains the jth independent coordinate of each of the a1 by a2 by ... by an data points.  The coordinates must form a proper "grid" of values, and must be sorted in strictly increasing order along each dimension.  More formally, opp&comma;xdata&lsqb;j1, j2, ..., jn] - opp&comma;xdata&lsqb;k1, k2, ..., kn&rsqb; must be zero if jp=kp, and must be positive if kp<jp.

  

The preferred methods minimize memory usage and execution time by avoiding unnecessary storage and verification of redundant data during the definition of f; there is no difference once f has been defined.  In all cases, xdata must contain real values of type numeric.

• 

The list of dependent coordinates of the data points, given in ydata, must be input as an Array (or a Matrix, Vector, or list for appropriate values of n) of size a1 by a2 by ... by an, so that the value of ydata&lsqb;j1, j2, ..., jn&rsqb; corresponds to the element in xdata of index &lsqb;j1, j2, ..., jn&rsqb;. Values in ydata must be real numbers of type extended_numeric.

• 

As an alternate form of input, a single structure xydata containing all coordinates of the data points can be entered.  It can be formatted in one of the following ways:

– 

an Array, DataFrame, or Matrix of size a1 by a2 by ... by an by (n+1), giving the independent and dependent coordinate(s) of each of a1 by a2 by ... by an data points as an ordered (n+1)-tuple.  The first n elements in each (n+1)-tuple represent the independent coordinates of each point, and must adhere to the same restrictions as above (a proper "grid" must be formed, and the independent coordinates must be sorted in strictly increasing order along each dimension).  The n+1st coordinate in each (n+1)-tuple then represents the dependent coordinate of the respective data point.

– 

a list of n+1 Arrays, Vectors, Matrices, or lists of size a1 by a2 by ... by an, where the jth array contains the jth independent coordinate of each of the a1 by a2 by ... by an data points for 1jn, and the n+1st Array contains the dependent coordinates of each point.  As above, the independent coordinates must adhere to certain restrictions (a proper "grid" must be formed, and the independent coordinates must be sorted in strictly increasing order along each dimension).

  

For multidimensional data, these methods are not recommended, since space is wasted storing the full grid of independent coordinates instead of a list of all the possible coordinates in each dimension. In both cases, the coordinates must be real values of type numeric.

• 

There are two ways to use the object f, created by these calling sequences:

– 

You can evaluate f at a single point x1, x2, ..., xn, by supplying these values as arguments.

– 

You can evaluate f at multiple points at once; how this works depends on whether n=1 or 1<n:

• 

For one-dimensional data, a Vector, list, or one-dimensional Array of numeric values can be input.  The output will be returned in a format matching the format of the input.

• 

For multidimensional data, an Array or Matrix of size u1 by u2 by ... by uk by n of numeric values can be input.  It must contain the n coordinates of each of u1 by u2 by ... by uk values to interpolate at, with the value of xvalues&lsqb;j1, j2, ..., jk, p&rsqb; giving the pth coordinate of the respective point.  The output will be returned in an array of size u1 by u2 by ... by uk containing the interpolated results.

• 

Alternatively, a list of n Vectors, lists, or one-dimensional Arrays can be input. The jth Vector, list, or Array in the input will be assumed to contain all of the possible jth coordinates of the values to interpolate at.  In this case, interpolation will be performed on an a1 by a2 by ... by an block of points, where aj is the length of the jth Vector or Array in the input.  The output will then be returned in a Vector, Matrix, list, or Array of size a1 by a2 by ... by an.

• 

If any of the data points in xvalues lie outside the rectangular bounding box specified by the input, then extrapolation will be performed to approximate their corresponding y-values.  The method by which extrapolation is performed can be controlled by using option extrapolate; see below.

• 

This command has separate numeric methods for handling hardware and software floats.  The decision about which routine to use can be controlled by setting the UseHardwareFloats environment variable.  If UseHardwareFloats remains unset, then hardware floats are used if and only if DigitsevalhfDigits, in which case all software floats in the input will be converted to hardware floats. If UseHardwareFloats or Digits are modified in between defining f and using it, the accuracy and performance may be worse than if you set the desired setting at the start.

• 

Only computations involving numeric floating-point data are supported by this routine. If the input does not contain floating-point data, an error will be thrown.

• 

For optimal performance, all rtables in the input should be Fortran order with rectangular storage (the default). Otherwise, a conversion will take place.  All rtables in the output will be Fortran order rtables with rectangular storage.

• 

This function is part of the Interpolation package, so it can be used in the short form LinearInterpolation(..) etc. only after executing the command with(Interpolation).  However, it can always be accessed through the long form of the command by using Interpolation[LinearInterpolation](..).

The Interpolating Functions

• 

This section describes the way in which f interpolates the given data points for each of the different commands possibly used to define f. They correspond to different method options for the CurveFitting[ArrayInterpolation] command.

• 

NearestNeighborInterpolation (corresponds to method = nearest): Perform nearest neighbor interpolation.  Given a point u, fu is defined to be y, wherex&comma;y is the data point such that the Euclidean distance xu is minimized.

• 

LowestNeighborInterpolation (corresponds to method = lowest): Perform lowest neighbor interpolation.  Given a point u in xvalues, fu is defined to be y, wherex&comma;y is the data point such that ux is non-negative in all coordinates, but the Euclidean distance xu is minimized.

• 

HighestNeighborInterpolation (corresponds to method = highest): Perform highest neighbor interpolation.  Given a point u in xvalues, fu is defined to be y, wherex&comma;y is the data point such that xu is non-negative in all coordinates, but the Euclidean distance xu is minimized.

• 

LinearInterpolation (corresponds to method = linear): Perform n-dimensional linear interpolation (lerping).  In the one-dimensional case, f is a piecewise-linear function passing through each data pointx&comma;y in the input.  In the multidimensional case, f is the tensor product of n such piecewise linear functions, one for each dimension.  fu is computed by performing linear interpolation along the first dimension, then along the second dimension, and so on.

• 

CubicInterpolation (corresponds to method = cubic): Perform piecewise cubic Hermite interpolation.  In the one-dimensional case, f is a piecewise-cubic function passing through each data pointx&comma;y in the input. In this case, fu = fiu if u lies in the interval xi&comma;xi+1, where each fi is a cubic polynomial such that fixi=yi and fixi+1=yi+1 for all data points xi&comma;yi in the input (where i ranges from 0 to k). The coefficients of the functions fi are determined locally by assigning slopes si to each data point xi and solving for the unique cubic function fix determined by the additional constraints that fi'xi=siandfi'xi+1=si+1.  This forces f to be continuously differentiable (C1).  The si themselves are computed using Bessel's method: si is the slope at xi of the parabola passing through xi1,yi1, xi,yi, and xi+1,yi+1.  In the multidimensional case, f is the tensor product of n such cubic interpolation functions, one for each dimension.

• 

SplineInterpolation (corresponds to method = spline): Perform spline interpolation.  By default, natural cubic spline interpolation is used.  In the one-dimensional case, f is a piecewise-cubic function passing through each data pointx&comma;y in the input. In this case, fu = fiu if u lies in the interval xi&comma;xi+1, where each fi is a cubic polynomial such that fixi=yi and fixi+1=yi+1 for all data points xi&comma;yi in the input (where i ranges from 0 to k).  The coefficients of the functions fi are selected such that f is twice continuously differentiable (C2), that is,  fi'xi+1=fi+1'xi+1and fi''xi+1=fi+1''xi+1.  In addition, the "natural" condition of the spline specifies that f''x0=0 and f''xk=0.  In the multidimensional case, f is the tensor product of n such spline functions, one for each dimension.  Using SplineInterpolation will produce a smoother interpolant than CubicInterpolation (C2 instead of C1), but is more expensive to set up and more prone to numerical instability because each segment of the spline is determined globally by the positions of all other points in the data set.

Options

• 

Options can be given either during construction of f, or while calling f. An option specified while calling f overrides one specified during construction of f.

• 

If the option extrapolate=e is given, where e is of type extended_numeric or truefalse, then one of the following possible extrapolation methods will be used to compute fx if x lies outside the bounding box specified by the input:

– 

extrapolate = true: Perform extrapolation using the closest valid branch of the interpolating function.  In the case of LowestNeighborInterpolation and HighestNeighborInterpolation, this is not be defined for some points, in which case undefined will be returned.

– 

extrapolate = false: Do not extrapolate.  An error will be thrown if any point in xvalues lies outside the bounding box specified by the input.

– 

extrapolate = e, where e is of type extended_numeric : Define fx to be e if x lies outside the bounding box specified by the input.  e is commonly zero or undefined.

  

extrapolate=true is used by default.

• 

If the option method=m is given, then it overrides the interpolation method specified by the procedure name. For example, fLinearInterpolationxdata&comma;ydata&comma;method=cubic will return a cubic interpolation object, and fxvalues&comma;method=spline will perform spline interpolation regardless of how f was constructed.

• 

If the options degree=d and endpoints=e are given, where d is a positive integer and e is one of natural, notaknot, or periodic, then spline interpolation will be performed using the provided degree and endpoint conditions.  See Spline Continuity and End Conditions for details.  These options only affect the result if SplineInterpolation is used; they are ignored otherwise.  In the multidimensional case, the same degree and endpoint conditions are used for the splines generated in each dimension.  The defaults are degree=3 and endpoints=natural, in which case natural cubic spline interpolation will be performed.

• 

If splines of an even degree are being used, the option knots=data forces the use of a spline function where the spline knots are positioned on the nodes.  See Spline Continuity and End Conditions for details.  The default method, knots=default, defines the spline knots at the midpoints of the nodes when even degree splines are used.  This option only affects SplineInterpolation calls; it is ignored for other objects.

• 

When f is evaluated at a single point by supplying the coordinates directly, without a list or other container, Maple copies the values into a buffer that is reused between invocations. For the other calling sequence, where you supply a container with potentially multiple points, you can achieve similar behavior with the container option.

  

If the option container=c is given, where c is an appropriately sized rtable, then the computation is performed in-place and the result is returned in c.  c must be of the correct size and datatype to match the output of the routine.  With this option, no additional memory is allocated to store the result; this is a programmer-level feature that can be used to reduce memory usage and decrease the time spent by Maple's garbage collector.  The default is container=false, in which case Maple creates and returns a new rtable containing the result.

• 

During construction of f, by default, Maple will sort the coordinates in xdata in each dimension, if they are not sorted already (and permute the entries in ydata accordingly), and also detect if the coordinates are (exactly) uniform. The data must be sorted for CurveFitting[ArrayInterpolation] to do its work, and uniformity can be used to speed up the interpolation process. If you know that your data are sorted already, you can supply the verify = false option, which will disable both these processes; Maple will assume that the data are sorted but not necessarily uniform.

  

During the call to f, by default, Maple will pass the option verify = false to the CurveFitting[ArrayInterpolation] command, because the sortedness of the data has already been verified. You can override this by passing verify = true, or just verify, to f.

• 

If the process is not turned off using the verify option (see above), then Maple will determine if the input data are uniform. You can pass the option uniform = true or uniform = false to override this. More precisely, this process should reflect whether the data points are sampled over a grid of uniformly spaced points in each dimension.  In other words, if ai,j is the jth possible coordinate in the ith dimension, then di=ai,jai,j1 is assumed to be constant over all possible j, given any fixed value of i.  This gives a considerable speedup when the input contains uniform data, since it allows Maple to use a fast lookup algorithm when evaluating the interpolant at the specified points.  Otherwise, Maple uses a slower but more general binary search algorithm to perform interpolation.  Using the uniform=true option with non-uniform data may produce incorrect results.

Examples

withInterpolation&colon;

withplots&colon;

An introductory example. Suppose a signal is sampled several times over a given interval of time:

Times0.&comma;0.01&comma;0.02&comma;0.03&comma;0.04&comma;0.05&comma;0.06&comma;0.07&comma;0.08&comma;0.09&comma;0.10&colon;

Amplitudes0.6&comma;0.&comma;0.4&comma;0.6&comma;0.3&comma;0.1&comma;0.2&comma;0.&comma;0.1&comma;0.3&comma;0.6&colon;

pointplotTimes&comma;Amplitudes

To interpolate the data:

fLinearInterpolationTimes&comma;Amplitudes

fa linear interpolation objectwith 11 points in 1-D

(1)

f0.033

0.510000000000000

(2)

plotfx&comma;x=0...0.1

NewTimesseq0.001i&comma;i=0..100

NewTimes0.&comma;0.001&comma;0.002&comma;0.003&comma;0.004&comma;0.005&comma;0.006&comma;0.007&comma;0.008&comma;0.009&comma;0.010&comma;0.011&comma;0.012&comma;0.013&comma;0.014&comma;0.015&comma;0.016&comma;0.017&comma;0.018&comma;0.019&comma;0.020&comma;0.021&comma;0.022&comma;0.023&comma;0.024&comma;0.025&comma;0.026&comma;0.027&comma;0.028&comma;0.029&comma;0.030&comma;0.031&comma;0.032&comma;0.033&comma;0.034&comma;0.035&comma;0.036&comma;0.037&comma;0.038&comma;0.039&comma;0.040&comma;0.041&comma;0.042&comma;0.043&comma;0.044&comma;0.045&comma;0.046&comma;0.047&comma;0.048&comma;0.049&comma;0.050&comma;0.051&comma;0.052&comma;0.053&comma;0.054&comma;0.055&comma;0.056&comma;0.057&comma;0.058&comma;0.059&comma;0.060&comma;0.061&comma;0.062&comma;0.063&comma;0.064&comma;0.065&comma;0.066&comma;0.067&comma;0.068&comma;0.069&comma;0.070&comma;0.071&comma;0.072&comma;0.073&comma;0.074&comma;0.075&comma;0.076&comma;0.077&comma;0.078&comma;0.079&comma;0.080&comma;0.081&comma;0.082&comma;0.083&comma;0.084&comma;0.085&comma;0.086&comma;0.087&comma;0.088&comma;0.089&comma;0.090&comma;0.091&comma;0.092&comma;0.093&comma;0.094&comma;0.095&comma;0.096&comma;0.097&comma;0.098&comma;0.099&comma;0.100

(3)

NewAmplitudesfNewTimes&colon;

pointplotNewTimes&comma;NewAmplitudes

We can use f to compute a smoother resampling of the data by using the spline method. This is the same result as if we had used SplineInterpolation to define f.

NewAmplitudesfNewTimes&comma;method=spline

NewAmplitudes−0.600000000000000&comma;−0.535245362023844&comma;−0.470778883925031&comma;−0.406888725580904&comma;−0.343863046868804&comma;−0.281990007666076&comma;−0.221557767850062&comma;−0.162854487298105&comma;−0.106168325887547&comma;−0.0517874434957308&comma;0.&comma;0.0489940045996458&comma;0.0953472098125777&comma;0.139300415025509&comma;0.181094419625155&comma;0.220970022998229&comma;0.259168024531444&comma;0.295929223611515&comma;0.331494419625155&comma;0.366104411959079&comma;0.400000000000000&comma;0.433269343625261&comma;0.465390044674720&comma;0.495687065478865&comma;0.523485368368183&comma;0.548109915673161&comma;0.568885669724286&comma;0.585137592852045&comma;0.596190647386925&comma;0.601369795659415&comma;0.599999999999997&comma;0.591628620899306&comma;0.576692611488537&comma;0.555851323059025&comma;0.529764106902110&comma;0.499090314309123&comma;0.464489296571409&comma;0.426620404980302&comma;0.386142990827140&comma;0.343716405403256&comma;0.300000000000001&comma;0.255616172777500&comma;0.211039509371118&comma;0.166707642285020&comma;0.123058204023370&comma;0.0805288270903279&comma;0.0395571439900593&comma;0.000580787226730273&comma;−0.0359626106954987&comma;−0.0696354172724636&comma;−0.0999999999999996&comma;−0.126693312009304&comma;−0.149650648973009&comma;−0.168881892199106&comma;−0.184396922995584&comma;−0.196205622670437&comma;−0.204317872531655&comma;−0.208743553887229&comma;−0.209492548045150&comma;−0.206574736313410&comma;−0.199999999999999&comma;−0.189842924740280&comma;−0.176436913479080&comma;−0.160180073488597&comma;−0.141470512041028&comma;−0.120706336408578&comma;−0.0982856538634387&comma;−0.0746065716778119&comma;−0.0500671971238980&comma;−0.0250656374738973&comma;0.&comma;0.0246650109704234&comma;0.0481983028893112&comma;0.0698021861534599&comma;0.0886789711596947&comma;0.104030968304734&comma;0.115060487985396&comma;0.120969840598477&comma;0.120961336540752&comma;0.114237286208990&comma;0.0999999999999375&comma;0.0777828808585923&comma;0.0484437019217836&comma;0.0131713288746198&comma;−0.0268453725978048&comma;−0.0704175368104529&comma;−0.116356298078259&comma;−0.163472790716156&comma;−0.210578149039137&comma;−0.256483507362091&comma;−0.300000000000018&comma;−0.340196534404825&comma;−0.377173110576564&comma;−0.411287501652190&comma;−0.442897480768742&comma;−0.472360821063219&comma;−0.500035295672632&comma;−0.526278677734034&comma;−0.551448740384373&comma;−0.575903256760704&comma;−0.600000000000009

(4)

pointplotNewTimes&comma;NewAmplitudes

plotfx&comma;method=spline&comma;x=0...0.1

A two-dimensional example: a tiny grayscale image stored in a Matrix:

Rangesseq1..10&comma;seq1..16&colon;

ImgevalfMatrix255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;208&comma;93&comma;22&comma;0&comma;16&comma;98&comma;210&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;196&comma;16&comma;0&comma;0&comma;0&comma;0&comma;0&comma;19&comma;200&comma;255&comma;255&comma;54&comma;54&comma;212&comma;255&comma;255&comma;61&comma;34&comma;156&comma;231&comma;255&comma;230&comma;154&comma;26&comma;58&comma;255&comma;255&comma;61&comma;0&comma;59&comma;255&comma;255&comma;5&comma;205&comma;255&comma;255&comma;255&comma;255&comma;255&comma;196&comma;7&comma;255&comma;255&comma;230&comma;91&comma;7&comma;255&comma;255&comma;20&comma;235&comma;255&comma;255&comma;255&comma;255&comma;255&comma;235&comma;36&comma;255&comma;255&comma;255&comma;233&comma;32&comma;255&comma;255&comma;125&comma;129&comma;255&comma;255&comma;255&comma;255&comma;255&comma;133&comma;186&comma;255&comma;255&comma;217&comma;89&comma;147&comma;255&comma;255&comma;255&comma;125&comma;50&comma;91&comma;99&comma;93&comma;40&comma;22&comma;121&comma;93&comma;58&comma;10&comma;140&comma;255&comma;255&comma;255&comma;255&comma;255&comma;216&comma;131&comma;75&comma;14&comma;5&comma;7&comma;12&comma;59&comma;121&comma;214&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&comma;255&colon;

listdensityplotImg&comma;style=polygon&comma;axes=none&comma;range=0..255

Upsample it to a larger image using bilinear interpolation:

gLinearInterpolationRanges&comma;Img&comma;extrapolate=255

ga linear interpolation objectwith an 10x16-point grid

(5)

NewRangesseqi&comma;i=0.6..10.4&comma;0.2&comma;seqi&comma;i=0.6..16.4&comma;0.2&colon;

NewImggNewRanges

listdensityplotNewImg&comma;style=polygon&comma;axes=none&comma;range=0..255

We do the same thing using bicubic interpolation.

NewImggNewRanges&comma;method=cubic

listdensityplotNewImg&comma;style=polygon&comma;axes=none&comma;range=0..255

The following is equivalent: we define h to be a cubic interpolation object. Independently, we can pass the extrapolate option to h directly, instead of during construction of h.

hCubicInterpolationRanges&comma;Img

ha cubic interpolation objectwith an 10x16-point grid

(6)

NewImghNewRanges&comma;extrapolate=255

listdensityplotNewImg&comma;style=polygon&comma;axes=none&comma;range=0..255

A non-uniform multidimensional example.  Create some 3-D mesh structures to pass through a given set of points defined by a mathematical function:

fi&comma;j3sini23j2&colon;

plot3df&comma;0..10&comma;0..10&comma;axes=normal

Define a non-uniform grid of points, and sample f over them:

vArray0&comma;1.5&comma;3.5&comma;5&comma;6&comma;8&comma;9&colon;

wArray0&comma;3&comma;5&comma;6&comma;6.5&comma;7.5&colon;

yMatrix7&comma;6&comma;a&comma;bevalffva&comma;wb&colon;

Plot the data so far:

pointplot3dseqseqvi&comma;wj&comma;yi,j&comma;j=1..6&comma;i=1..7&comma;axes=normal&comma;symbol=sphere

Create a finer mesh to interpolate over:

a1Matrix50&comma;50&comma;i&comma;ji5&colon;

a2Matrix50&comma;50&comma;i&comma;jj5&colon;

AArrayToolsConcatenate3&comma;a1&comma;a2&colon;

Linear interpolation produces a quick approximation to f:

fLinearInterpolationv&comma;w&comma;y

fa linear interpolation objectwith an 7x6-point grid

(7)

BfA

matrixplotMatrixB&comma;axes=normal

Nearest-neighbor interpolation can also be used for quick lookup purposes:

BfA&comma;method=nearest&colon;

matrixplotMatrixB&comma;axes=normal

Spline interpolation produces a smoother approximation to the original function f:

BfA&comma;method=spline&colon;

matrixplotMatrixB&comma;axes=normal

Increasing the degree of the spline approximation can increase the smoothness of the result, but results in a longer computation time, greater numerical instability, and can cause large oscillations around the edges of a data set:

BfA&comma;method=spline&comma;degree=5&colon;

matrixplotMatrixB&comma;axes=normal

Compatibility

• 

The Interpolation[NearestNeighborInterpolation], Interpolation[LowestNeighborInterpolation], Interpolation[HighestNeighborInterpolation], Interpolation[LinearInterpolation], Interpolation[CubicInterpolation] and Interpolation[SplineInterpolation] commands were introduced in Maple 2018.

• 

For more information on Maple 2018 changes, see Updates in Maple 2018.

See Also

CurveFitting[ArrayInterpolation]

CurveFitting[Lowess]

Interpolation[InverseDistanceWeightedInterpolation]

Interpolation[Kriging]

Interpolation[LinearTriangularInterpolation]

Interpolation[NaturalNeighborInterpolation]

Interpolation[RadialBasisFunctionInterpolation]