I'm looking for an algorithm to calculate ln(1-x). x is often small (<0.01), but occasionally it might be larger. Algorithm needs to be accurate, and not too slow. I'd rather not use library for ln(x), because I might lose accuracy.
|
feedback
|
|
Depending on the accuracy you want, Edit: If the reason for needing the algorithm is getting the best accuracy, then there are many libraries that are specialised for | |||||||
feedback
|
xbe? – Muhammad Alkarouri Sep 23 '10 at 9:12xis arbitrary close to 1.0 you are looking at the generallogfunction, as the result becomes-1/log(1/(1-x))which is arbitrarily large. – Muhammad Alkarouri Sep 23 '10 at 9:45