squareroot: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
Line 6: Line 6:
|usage=
|usage=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[h: num = squareroot(num)]
[h: num = squareroot(number)]
[h: num = sqrt(num)]
[h: num = sqrt(number, precision)]
</source>
</source>
'''Parameters'''
{{param|number|Value to determine the square root of.}}
{{param|precision|Number of decimal points. Defaults to 10.}}


|example=
|example=
<source lang="mtmacro" line>
<source lang="mtmacro" line>
[r: squareroot(9)]
[r: squareroot(9)]
[r: squareroot(81)]
[r: squareroot(80)]
[r: sqrt(10,2)]
</source>
</source>
Returns  
'''Returns'''
    3
<source lang="mtmacro">
    9
  3
  8.9442719100 
  3.16 
</source>
 
}}
}}
[[Category:Mathematical Function]]
[[Category:Mathematical Function]]

Revision as of 18:39, 22 May 2020

squareroot() Function

Returns the square root of a number.

Usage

[h: num = squareroot(number)]
[h: num = sqrt(number, precision)]

Parameters

  • number - Value to determine the square root of.
  • precision - Number of decimal points. Defaults to 10.

Example

[r: squareroot(9)]
[r: squareroot(80)]
[r: sqrt(10,2)]

Returns

  3  
  8.9442719100  
  3.16