Skip to main content

INTERP.1D.NEVILLE Function

INTERP.1D.NEVILLE

Lagrange Polynomial Interpolation using Neville's Algorithm. Supports both differentiation and integration.

Syntax

=INTERP.1D.NEVILLE(dataX, dataY, queryPoints, extrapolate)

Parameters

NameTypeRequiredDescription
dataXDouble[]YesKnown x values.
dataYDouble[]YesKnown y values.
queryPointsObjectYesPoints to interpolate at.
extrapolateBooleanNoAllow extrapolation.

Returns

Calculated result based on input parameters

Examples

Error Conditions

ErrorCauseSolution

About NEVILLE Interpolation

Interpolation estimates unknown values by fitting a function through known data points. The NEVILLE method provides a specific approach to constructing this interpolating function.

Key Characteristics

When to Use:

  • When you have discrete data points and need intermediate values
  • For smoothing or curve fitting applications
  • When analytical functions are not available

Practical Applications

  • Data Analysis: Fill missing data points in time series
  • Scientific Computing: Resample data to different grids
  • Engineering: Smooth sensor readings
  • Graphics: Generate smooth curves from control points

See Also