JuliaMath / JuliaMath/Interpolations.jl

Interpolating 2D non-uniform Data

Open
#563 1 comment 0 reactions 0 assignees View on GitHub
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)
```
![image](https://github.com/JuliaMath/Interpolations.jl/assets/54986485/979a8400-a0b5-4010-9059-7c0bfbfd0f46)

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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.