Questions tagged [linear-interpolation]

Linear interpolation is the process of approximating intermediate values given an assumption that the ranges of missing data look roughly like straight lines.

Linear interpolation is largely used for its simplicity and is typically more effective given a greater density of data. The more complex the underlying relationship of the quantities involved, the less likely linear interpolation is to provide a good value estimates.

In scientific software for statistical computing and graphics, function approx performs 1D linear interpolation.

437 questions
-2
votes
1 answer

Numeric Linear Interpolation on Delphi

I need to make a simple numeric linear interpolation in Delphi, was thinking of implementing a function, but then thought better and I think that should already be some library. I found nothing on google. My problem is simple, I have a dataset with…
Artur_Indio
  • 736
  • 18
  • 35
-3
votes
1 answer

Quadratic regression - spline interpolation

I am experimenting with a open source code, which is based on learned index for DBMS indexing. Each index is considered as a model which predicts the position of the key in the dataset. I am trying to fit a quadratic regression model in place of…
1 2 3
29
30