Log10
Result# = Log10(Value)
 
Parameters:

    Value = A positive value you wish to calc the LOG of
Returns:

    Result# = The natural logarithm of the input value.
 

      Log10 Returns the natural logarithm of the input parameter to the base 10.



FACTS:


     * None



Mini Tutorial:


     This example calcs the natural LOG10 of 10

  
  
; Calc the natural log of 10, to the base 10
  e#=Log10(10)
  
; Display this value
  Print e#
  
; display the Exp() of this Log10 value
  Print Exp(e#*Log(10))
  
; Display the screen and wait for a key input
  Sync
  WaitKey
  




This example would output.

  
  1.0
  10.0
  

 
Related Info: Exp | Log :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com