JuliaMath / JuliaMath/Interpolations.jl
Interpolating 2D non-uniform Data
Open
- Dominant language
- Julia
- Stars
- 575
- Forks
- 117
- PR merge metrics
- No merged PRs in 30d
Description
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)
```

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.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.