JuliaMath / Interpolations.jl

Fast, continuous interpolation of discrete datasets in Julia

Home Page:http://juliamath.github.io/Interpolations.jl/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Interpolating 2D non-uniform Data

cdelv opened this issue · comments

Hi, I have data of a 2D function (W(x, y)) in a non-uniform grid. Here you can see how it looks like:

data = CSV.read(file_path, DataFrame)
W = data[:,2]
x = data[:,3]
y = data[:,4]
plotscatter(x, y, W)

image

As the data is non-uniform, I can't seem to manage to make it work with the interpolator, but I really need to create an interpolator for this data. Does someone know how to do it?

Best Regards.