advanced operators?

I cannot seem to find operators for raising values to powers or to compute base e logs.  Unavailable in Express

Answer this question

advanced operators?

  • colostate

     

    This works for me to raise 2 to the 1.6 power.

    TextBox1.Text = CDbl(2 ^ 1.6)

     

    Also there is this from the math library:

     n = log(B)[X] = 1 / log(X)[*B*]")

    IGNORE THE ASTERISTS - They are to prevent beer mug emoticons

    I believe the [*b*] specifies the base of the log....

     

     

     

     



  • dlsmith68

    many thanks!  It works for me too now.  Where do you find this math library   Appreciate your help, Chet
  • Rob McCabe

    As far as I can see, the Math class is a static intrinsic class. I don't think you have to declare it.

  • advanced operators?