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
| Name | Type | Required | Description |
|---|---|---|---|
| dataX | Double[] | Yes | Known x values. |
| dataY | Double[] | Yes | Known y values. |
| queryPoints | Object | Yes | Points to interpolate at. |
| extrapolate | Boolean | No | Allow extrapolation. |
Returns
Calculated result based on input parameters
Examples
Error Conditions
| Error | Cause | Solution |
|---|
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
- Method Comparison - Compare different methods
- Quick Start Guide - Get started with the add-in