I'm trying to use Boost c++ library for Hermite interpolation, but it's not well documented and I'm not well understand.
My case is to calculate y values at some x position from data points such as:
X: 0.9, 1.7, 2.55, 3.39...
Y: 0.9, 0.8, 0.85, 0.84...
And get result with equal x spaces (x space 0.5):
X: 0.5, 1.00, 1.5, 2.00, 2.5, 3.0,...
Y: 0.8, 0.95, 0.8, 0.85, 0.9, 0.9,...
Can boost be helpful for me? I had found more implementations of Hermite in web, but examples and it's result output was not what I'm looking for. I think thats because I don't understand how it works. When I read about Hermite I tought that algorithm should ask for some points, spacing value and might few other input values and then calculate and return new points, but I was wrong and now lost..
Maybe someone has experience using Hermite and had similar case?