Stupid math question....

  • Thread starter Thread starter Robin Tucker
  • Start date Start date
R

Robin Tucker

How do I calculate the inverse log? Given that I'm using:

x = Math.Log ( y )


Given x, I want to find y :)


(think it's something to do with exponents, but can't remember from math
class).......
 
How do I calculate the inverse log? Given that I'm using:
x = Math.Log ( y )


Dim y As Double = 178.9
Dim x As Double = Math.Log(x)

Trace.WriteLine(Math.Exp(x).ToString())
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top