[julia-users] Re: Irregular Interpolation Help

2016-08-24 Thread Kaj Wiik
Hi! See: https://groups.google.com/d/msg/julia-users/XH7SRGHc6Pg/OQSouoUoAwAJ (I had problems that were in fact not related to gridding...) Cheers, Kaj On Wednesday, August 24, 2016 at 12:41:55 PM UTC+3, christo...@roames.com.au wrote: > > Hi all, > > I have been looking at Interpolations.jl,

[julia-users] Re: Irregular Interpolation

2015-07-30 Thread Andrew
That sounds useful. I've been using Dierckx for my economics work to get interpolation on nonlinear grids, but it only goes to 2D. I haven't yet had the need for anything higher, but it's good to know there's stuff out there. On Wednesday, July 29, 2015 at 1:49:28 PM UTC-4, Spencer Lyon wrote: >

[julia-users] Re: Irregular Interpolation

2015-07-30 Thread Jude
That's really helpful! I will have a look at all the packages you guys referenced and see which one suits my problem best. Thanks a lot! On Wednesday, July 29, 2015 at 8:26:35 PM UTC+1, Luke Stagner wrote: > > I wrote some code that did Polyharmonic (Thin-plate) splines feel free to > use them

[julia-users] Re: Irregular Interpolation

2015-07-29 Thread Luke Stagner
I wrote some code that did Polyharmonic (Thin-plate) splines feel free to use them https://github.com/tlycken/Interpolations.jl/issues/6 On Wednesday, July 29, 2015 at 6:16:59 AM UTC-7, Jude wrote: > > Hi, > > I have been using the fantastic grid package by Tim Holy for the past > while but I re

[julia-users] Re: Irregular Interpolation

2015-07-29 Thread Spencer Lyon
It's currently going through a major overhaul to get ready for public consumption, but CompEcon.jl provides a Julia implementation of the popular (amongst economists) CompEcon matlab toolbox. It does irregular interpolation for an arbitrary number

[julia-users] Re: Irregular Interpolation

2015-07-29 Thread Nils Gudat
Besided GridInterpolations, you might want to look at ApproXD.jl, which works up to four dimensions. I once wrote a little script that compares different one- and two-dimensional interpolation schemes in Julia, it can be found here