sqrt: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *(arg|eff|mp|serverExec|gr[0-9]) *= *(.*) * *\|([^=0-9]{12})" to "|$1=$2 |descr=$3") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 1: | Line 1: | ||
{{RV|type=command | {{RV|type=command | ||
| ofp | |game1= ofp | ||
|1.00 | |version1= 1.00 | ||
|game2= ofpe | |game2= ofpe | ||
Line 26: | Line 26: | ||
|descr= Returns square root of x. | |descr= Returns square root of x. | ||
|s1= | |s1= [[sqrt]] x | ||
|p1= x: [[Number]] | |p1= x: [[Number]] | ||
|r1=[[Number]] | |r1= [[Number]] | ||
|x1= <code>[[private]] _squareRoot = sqrt 9; {{cc|returns 3}}</code> | |x1= <code>[[private]] _squareRoot = [[sqrt]] 9; {{cc|returns 3}}</code> | ||
| | |seealso= [[Math Commands]] [[a_%5E_b|a ^ b]] | ||
}} | }} | ||
Line 43: | Line 43: | ||
<dt class="note">[[User:Benargee|Benargee]]</dt> | <dt class="note">[[User:Benargee|Benargee]]</dt> | ||
<dd class="note"> | <dd class="note"> | ||
Alternatively use "x^0.5" or "x^(1/2)". <code>_sq = 9^0.5; | Alternatively use "x^0.5" or "x^(1/2)". | ||
_sq = 9^(1/2); | <code>_sq = 9^0.5; {{cc|result is 3}} | ||
_sq = 9^(1/2); {{cc|result is 3}}</code> | |||
You can use this method to get any root. | You can use this method to get any root. | ||
Cubed root = x^(1/3) or x^0.333[repeating]. | Cubed root = x^(1/3) or x^0.333[repeating]. | ||
Root 4 = x^(1/4) or x^0.25. | Root 4 = x^(1/4) or x^0.25. | ||
</dd> | |||
</dl> | </dl> | ||
Revision as of 23:33, 13 June 2021
Description
- Description:
- Returns square root of x.
- Groups:
- Math
Syntax
Examples
Additional Information
- See also:
- Math Commands a ^ b
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on 18:05, 24 August 2014 (EST)
- Benargee
-
Alternatively use "x^0.5" or "x^(1/2)".
_sq = 9^0.5; // result is 3 _sq = 9^(1/2); // result is 3
You can use this method to get any root. Cubed root = x^(1/3) or x^0.333[repeating]. Root 4 = x^(1/4) or x^0.25.
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Math