Log10

From Mesham
Revision as of 12:51, 13 January 2013 by Polas (talk | contribs) (Created page with '== Overview == This log(d) function will find the base 10 logarithmic value of ''d'' * '''Pass:''' A double * '''Returns:''' A double representing the base 10 logarithmic value…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Overview

This log(d) function will find the base 10 logarithmic value of d

  • Pass: A double
  • Returns: A double representing the base 10 logarithmic value

Example

#include <maths>
var a:=log10(0.154);
var y:=log10(a);