Difference between revisions of "Math.log"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === returns natural logarithm of v <source lang="lua"> (number), = math.log(v,) </source> '''v:''' (number...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[math]]<br/>
 +
 
=== Description ===
 
=== Description ===
returns natural logarithm of v
+
Returns the natural logarithm of v.
<source lang="lua">
+
<syntaxhighlight lang="lua">
(number), = math.log(v,)
+
(number) = math.log(v)
</source>
+
</syntaxhighlight>
'''v:''' (number) value ''''''<br/>
+
 
 +
=== Parameters ===
 +
'''v''': (number) value<br/>
 +
 
 +
=== Return values ===
 
'''Returns''' (number) result<br/>
 
'''Returns''' (number) result<br/>
 +
 +
{{Math}}

Latest revision as of 15:30, 13 July 2023