-
Notifications
You must be signed in to change notification settings - Fork 13
Description
Hi,
I was trying to do the interpolation onto a 3D grid. With the number of scattered points ~2*10^6 and the method Multiquadratic(), I had a OutOfMemoryError. Based on what I've seen briefly in the backtrace source code, there is somewhere in the Distance package that requires a n*n matrix, where n is the number of scattered points. Is that right? Is it possible to do the interpolation at this size currently?
I also tried Shepard(). It turns out that there're also allocations of some large matrix which throws OutOfMemoryError with a large number of points to be evaluated when calling evaluate.
In MATLAB or Python, I noticed that for 3D scattered data interpolation only two methods are presented: nearest neighbor and linear. The methods in this package is different from what the other two mean by linear right? Is there an equivalent method of linear in Julia?
Thanks ahead.