Hi All.
I am trying to create function which will allow me to make logarithmic interpolation. I can not find such kind of it, but I know that it exists.
I need that function takes two arrays of double(x,y) and obtains array of interpolated function values(y).
First that comes to mind it's find a linear interpolated function and after that apply pow with base 2.7.
But, I can not even understand approach which can allow to take into account already existing points values of arguments. I guess that some kind of binary search should be use, but it's too complex. May be there is another way?
I am trying to create function which will allow me to make logarithmic interpolation. I can not find such kind of it, but I know that it exists.
nope, it does not exist in the standard library in the way you want it.
The standard library provides basic stuff so you can implement something like that without any problems.