Difference between revisions of "Log"
From Mesham
Jump to navigationJump to search (Created page with '== Overview == This log[n] function will find the logarithmic value of ''n'' * '''Pass:''' A double * '''Returns:''' A double representing the logarithmic value\twolines{} == …') |
m (6 revisions imported) |
||
| (5 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
| − | This log | + | This log(d) function will find the natural logarithmic value of ''d'' |
| − | * '''Pass:''' A | + | * '''Pass:''' A [[Double]] |
| − | * '''Returns:''' A | + | * '''Returns:''' A [[Double]] representing the logarithmic value |
== Example == | == Example == | ||
| − | var a:=log | + | #include <maths> |
| − | + | ||
| − | + | function void main() { | |
| + | var a:=log(10.54); | ||
| + | var y:=log(a); | ||
| + | }; | ||
| + | |||
| + | ''Since: Version 0.41b'' | ||
[[Category:Function Library]] | [[Category:Function Library]] | ||
[[Category:Maths Functions]] | [[Category:Maths Functions]] | ||