Difference between revisions of "Math.sqrt"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(7 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 square root of v
+
Returns the square root of v.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = math.sqrt(v)
 
(number) = math.sqrt(v)
</source>
+
</syntaxhighlight>
 +
 
 
=== Parameters ===
 
=== Parameters ===
'''v''': (number) value to compute the square root for <br/>
+
'''v''': (number) value to compute the square root of<br/>
 +
 
 
=== Return values ===
 
=== Return values ===
 
'''Returns''' (number) square root<br/>
 
'''Returns''' (number) square root<br/>
 +
 +
=== See also ===
 +
'''[[Mutation_Operators|Mutation Operators]]''' ('''5 times faster!''')
 +
 +
{{Math}}

Latest revision as of 15:31, 13 July 2023