BIS fnc pow: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|seealso= ([^ ]+)(\]\]|\}\}), *(\[\[|\{\{)" to "|seealso= $1$2 $3")
m (Some wiki formatting)
 
(4 intermediate revisions by the same user not shown)
Line 6: Line 6:
|gr1= Math
|gr1= Math


|descr= Return value1 raised to the power of value2. Identical to [[a ^ b]]. {{Feature|Informative|Use [[a ^ b]], it is 5 times faster.}}
|descr= Return value1 raised to the power of value2. Identical to [[a ^ b]]. {{Feature|important|Use [[a ^ b]] as it is 5 times faster.}}
<!--
<!--
|alias= [[a ^ b]]
|alias= [[a ^ b]]
Line 18: Line 18:
|r1= [[Number]] - ''value1'' raised to the power of ''value2''
|r1= [[Number]] - ''value1'' raised to the power of ''value2''


|x1= <code>[2, 10] [[call]] [[BIS_fnc_pow]]; {{cc|returns 2^10 {{=}} 1024}}</code>
|x1= <sqf>[2, 10] call BIS_fnc_pow; // returns 2^10 = 1024</sqf>


|seealso= [[Operators]] [[:Category:Command Group: Math|Math Commands group]], [[a ^ b]]
|seealso= [[Operators]] [[:Category:Command Group: Math|Math Commands group]] [[a ^ b]]
}}
}}

Latest revision as of 13:01, 13 July 2022

Hover & click on the images for description

Description

Description:
Return value1 raised to the power of value2. Identical to a ^ b.
Use a ^ b as it is 5 times faster.
Execution:
call
Groups:
Math

Syntax

Syntax:
[value1, value2] call BIS_fnc_pow
Parameters:
value1: Number
value2: Number
Return Value:
Number - value1 raised to the power of value2

Examples

Example 1:
[2, 10] call BIS_fnc_pow; // returns 2^10 = 1024

Additional Information

See also:
Operators Math Commands group 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