Interpolations.jl
Interpolations.jl copied to clipboard
Higher-order interpolations with Gridded?
Hello,
I am trying to carry out a 2D interpolation based on a grid. Using an appropriate grid, this works:
interpolate((xs,ys),u',Gridded(Linear()))
but is there a higher-order version of this, such as
interpolate((xs,ys),u',Gridded(CubicSpline()))
or something similar?
You can try a MonotonicInterpolation like SteffenMonotonicInterpolation , they are mostly of order 3 I think.
Edit: they are only 1D.. sry for the noise.