Is there any library (DLL) or c# code which allows to interpolate 2D scattered data? Algib is pretty good but works with regular grids
Asked
Active
Viewed 1,087 times
2 Answers
1
Alglib fastrbf has 2 algorithms:
- "RBF-ML can be used to solve two kinds of problems: interpolation problems and smoothing problems with controllable noise suppression"
- "RBF-QNN uses automatic radius selection."
(I haven't used either, and Gaussian RBFs tend to be ill-conditioned, but the doc looks reasonable.)
And please add tag "alglib".
0
ALGLIB now also offers cubic spline interpolation of scattered data. We have made good experiences with the spline2d method using the BlockLLS solver. It is, however, necessary to tune the number of grid points to a not too large value, otherwise the interpolant shows artifacts.

Amos Egel
- 937
- 10
- 24