R
Randy
Hello,
Can someone tell me how to derive the Inverse of Math.Log10(value)?
Thanks
Can someone tell me how to derive the Inverse of Math.Log10(value)?
Thanks
Can someone tell me how to derive the Inverse of Math.Log10(value)?
Randy said:I'm not sure...as part of some program specs...I'm to calculate the Inverse
of Log10(of some value). I think you can see what I'm talking about if you
open the Windows Calculator in Scientific mode and then clicn the Inv switch
and then do a Log function on any number...
Example: The inverse of Log10(1.5) == 31.62277...
Log10(31.62277...) = 1.5
Thanks
Randy said:I'm not sure...as part of some program specs...I'm to calculate the Inverse
of Log10(of some value). I think you can see what I'm talking about if you
open the Windows Calculator in Scientific mode and then clicn the Inv switch
and then do a Log function on any number...
Example: The inverse of Log10(1.5) == 31.62277...
Log10(31.62277...) = 1.5
Thanks
Adam Clauss said:log10(31.62277) = 1.5
and
Pow(10,1.5) = 31.62277
Which is what you want right?