Finding x from y = log₂(x) efficiently for calibration

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 3K views
macilak
Messages
1
Reaction score
0
Hello All,

I have a very impotant question for you. Any help is appreciated.

Given is a logarithmical function: y = log2x (2 is the base) and the y value is known.
I have to find out what is the x value in the fewest steps possible. It can be made by giving sample values for x and applying to the function, but the performance (timing) is a key value, so the process must be very quick. The known solution is to split the curve to lines and shrink the range of possibilities.

Later on I have to translate the solution into C++ and apply it for calibration.

Many thanks in advance for your help!
 
Physics news on Phys.org
Are you constrained to solving the problem by iteration? You could just write [itex]x=2^y[/itex] and use the built-in functions.