Difference between pages "Template:Help Us" and "Log"

From Mesham
(Difference between pages)
Jump to navigationJump to search
m (3 revisions imported)
 
m
 
Line 1: Line 1:
<!--<div style="margin: 0 0 15px 0; padding: 0.2em; background-color: #EFEFFF; color: #000000; border: 1px solid #9F9FFF; text-align: center;">
+
== Overview ==
'''Mesham always needs your help! See the [[Wish List]] for more information.'''
+
 
</div>-->
+
This log(d) function will find the natural logarithmic value of ''d''
 +
 
 +
* '''Pass:''' A [[Double]]
 +
* '''Returns:''' A [[Double]] representing the logarithmic value
 +
 
 +
== Example ==
 +
 
 +
#include <maths>
 +
var a:=log(10.54);
 +
var y:=log(a);
 +
 
 +
''Since: Version 0.41b''
 +
 
 +
[[Category:Function Library]]
 +
[[Category:Maths Functions]]

Revision as of 18:34, 13 January 2013

Overview

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

  • Pass: A Double
  • Returns: A Double representing the logarithmic value

Example

#include <maths>
var a:=log(10.54);
var y:=log(a);

Since: Version 0.41b