Rob van der Woude's Scripting Pages
Powered by GeSHi

Source code for log10_php.bat

(view source code of log10_php.bat as plain text)

  1. :: https://www.robvanderwoude.com/batchphp.php
  2. :: Returns base-10 logarithm of specified value
  3. :: Usage:  "Log10 100" returns "2", "Log10 25" returns "1.397940008672"
  4. @IF NOT "%~1"=="" PHP -r print(log10(%~1));
  5.  

page last modified: 2024-04-16; loaded in 0.0164 seconds