Difference between revisions of "Log10"

From Mesham
Jump to navigationJump to search
(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…')
 
m
Line 3: Line 3:
 
This log(d) function will find the base 10 logarithmic value of ''d''
 
This log(d) function will find the base 10 logarithmic value of ''d''
  
* '''Pass:''' A double
+
* '''Pass:''' A [[Double]]
* '''Returns:''' A double representing the base 10 logarithmic value
+
* '''Returns:''' A [[Double]] representing the base 10 logarithmic value
  
 
== Example ==
 
== Example ==
Line 11: Line 11:
 
  var a:=log10(0.154);
 
  var a:=log10(0.154);
 
  var y:=log10(a);
 
  var y:=log10(a);
 +
 +
''Since: Version 0.41b''
  
 
[[Category:Function Library]]
 
[[Category:Function Library]]
 
[[Category:Maths Functions]]
 
[[Category:Maths Functions]]

Revision as of 18:35, 13 January 2013

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);

Since: Version 0.41b