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

Online Help

All Products    Maple    MapleSim


Interpolation

  

LinearTriangularInterpolation

  

interpolate 2-D scattered data using the linear triangular interpolation method

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

LinearTriangularInterpolation(xy,z)

f:=LinearTriangularInterpolation(xy,z)

f(x,y)

f(M)

Parameters

xy

-

listlist, Array, or Matrix of the form ; the (x,y) coordinates of the sample points

z

-

list, Array, or Vector of sample values corresponding to the (x,y) points

x,y

-

evaluate f at (x,y)

M

-

a k x 2 Matrix of points at which to evaluate f

Description

• 

The LinearTriangularInterpolation command creates a function  which can then be evaluated at arbitrary points within the convex hull of the sample points.

• 

The linear triangular interpolant is defined as follows. The Delaunay triangulation on the given input points xy is determined, and the interpolant is defined on each triangle as the linear interpolant between the three z-values at its vertices.

• 

A linear triangular interpolant is  continuous.

• 

This interpolation method does not introduce local minima or maxima which are not already present in the input data.

• 

Results may be poor when interpolating near the convex hull of the sample points.

• 

Evaluating f at points outside of the convex hull produces .

• 

As with all interpolation methods, the interpolant f always passes through all of the sample values.

• 

Input sample points must not contain duplicates. The presence of duplicate points can lead to unexpected results.

• 

In order to evaluate f at k points, you can put each point in a row of a Matrix M and call f(M) to obtain the k values of f in a k-element Vector. This will be most efficient if M's options are such that its datatype is float[8], its order is C_order, and its storage is rectangular.

Examples

(1)

(2)

(3)

f can be polled at specific points.

(4)

(5)

(6)

Use plot3d to plot the interpolated surface.

Compatibility

• 

The Interpolation[LinearTriangularInterpolation] command was introduced in Maple 2018.

• 

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

See Also

Interpolation

 


Download Help Document