home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / Log.au3 < prev    next >
Text File  |  2004-09-22  |  189b  |  9 lines

  1. $x = Log(1000)   ;returns 6.90775527898214
  2.  
  3. $y = Log10(1000) ;returns 3
  4.  
  5. ; user-defined function for common log
  6. Func Log10($x)
  7.     Return Log($x) / Log(10)  ;10 is the base
  8. EndFunc
  9.