Spline / Polinomial Interpolation Library?

I am struggled to find any Elixir package to perform spline (or at least polynomial) interpolation.

My input is very simple and although I am fine to implement it on my own, I’d rather use (and maybe contribute to) somewhat already existing rather than reinvent a wheel.

Thanks.

1 Like

FWIW, this is what I was able to duckduckgo so far.

http://blog.lfe.io/tutorials/2015/01/01/1215-scientific-computing-on-the-erlang-vm/

It uses python port and is definitely not what one would bring to their project to interpolate a dataset of 20 points.

https://hexdocs.pm/expline/Expline.html

Posting out of pure ignorance :slight_smile:

2 Likes

Thank you very much!

Looks exactly as what I need; lightweight, no attempt to cover everything in the universe, straightforward. I hope there was no huge breakthrough in spline interpolation in the last three years :))

1 Like

Its been too long since studying any math so I was not sure if it was what you were looking for. Glad it was accurate :smiley:

1 Like