a % b: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|version4= 1.51 |game5= tkoh |version5= 1.00 |game6= arma3 |version6= 1.00" to "|version4= 1.51 |game5= tkoh |version5= 1.00 |game6= arma3 |version6= 0.50")
m (Some wiki formatting)
 
(18 intermediate revisions by 2 users not shown)
Line 4: Line 4:


|game1= ofp
|game1= ofp
|version1= 1.00
|version1= 1.00


|game2= arma1
|game2= ofpe
 
|version2= 1.00
|version2= 1.00


|game3= arma2
|game3= arma1
 
|version3= 1.00
|version3= 1.00


|game4= arma2oa
|game4= arma2
|version4= 1.00


|version4= 1.51
|game5= arma2oa
|version5= 1.50


|game5= tkoh
|game6= tkoh
|version6= 1.00


|version5= 1.00
|game7= arma3
 
|version7= 0.50
|game6= arma3
 
|version6= 0.50


|gr1= Math


|gr1= Math
|descr= Remainder of ''a'' divided by ''b''.


|descr= Remainder of '''a''' divided by '''b'''.
|alias= [[mod]]


|s1= a [[a % b|%]] b
|s1= a [[a % b|%]] b
Line 40: Line 38:
|r1= [[Number]]
|r1= [[Number]]


|x1= <code>4.5 [[a % b|%]] 3 {{cc|Result is 1.5}}</code>
|x1= <sqf>4.5 % 3 // result is 1.5</sqf>


|seealso= [[mod]], [[Operators]]
|seealso= [[mod]] [[Operators]]
}}
}}


<!-- Note Section BEGIN -->
{{Note
<dl class="command_description">
|user= Hoz
<dd class="notedate">Posted on 01:34, 16 April 2006</dd>
|timestamp= 20060416013400
<dt class="note">[[User:Hoz|Hoz]]</dt>
|text= <nowiki/>
<dd class="note">
* Remainder is calculated in real domain.
* Remainder is calculated in real domain.
* [[a % b]] is identical to [[mod]]
* [[a % b]] is identical to [[mod]]
You can use % to round a decimal number down to the nearest whole number. For example: If you wanted to use the command random to generate a whole number between 0 and 5, you could put this in a script:  
You can use % to round a decimal number down to the nearest whole number. For example: If you wanted to use the command random to generate a whole number between 0 and 5, you could put this in a script:  
<code>_rand = [[random]] 6;
<sqf>
_rand = random 6;
_num = _rand - (_rand % 1);
_num = _rand - (_rand % 1);
</code>
</sqf>
In A1, the new commands [[round]], [[floor]] or [[ceil]] would be the easier way to round.
In A1, the new commands [[round]], [[floor]] or [[ceil]] would be the easier way to round.
</dd>
}}


<dd class="notedate">Posted on July 21, 2015 - 14:55 (UTC)</dd>
{{Note
<dt class="note">[[User:SilentSpike|SilentSpike]]</dt>
|user= SilentSpike
<dd class="note">
|timestamp= 20150721145500
Be careful when dealing with negative numbers. The way a modulo operation treats negatives differs between languages. In SQF truncated division is used, hence:
|text= Be careful when dealing with negative numbers. The way a modulo operation treats negatives differs between languages. In SQF truncated division is used, hence:
<code>-12 % -10 = -2
<sqf>
-12 % -10 = -2
-12 %  10 = -2
-12 %  10 = -2
  12 % -10 =  2
  12 % -10 =  2
  12 %  10 =  2</code>
  12 %  10 =  2
</dd>
</sqf>
</dl>
}}
<!-- DISCONTINUE Notes -->
 
[[Category:Scripting Commands OFP 1.46]]
[[Category:Scripting Commands OFP 1.96]]
[[Category:Scripting Commands OFP 1.99]]
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Latest revision as of 09:44, 13 May 2022

Hover & click on the images for description

Description

Description:
Remainder of a divided by b.
Alias:
mod
Groups:
Math

Syntax

Syntax:
a % b
Parameters:
a: Number
b: Number
Return Value:
Number

Examples

Example 1:
4.5 % 3 // result is 1.5

Additional Information

See also:
mod Operators

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
Hoz - c
Posted on Apr 16, 2006 - 01:34 (UTC)
  • Remainder is calculated in real domain.
  • a % b is identical to mod
You can use % to round a decimal number down to the nearest whole number. For example: If you wanted to use the command random to generate a whole number between 0 and 5, you could put this in a script:
_rand = random 6; _num = _rand - (_rand % 1);
In A1, the new commands round, floor or ceil would be the easier way to round.
SilentSpike - c
Posted on Jul 21, 2015 - 14:55 (UTC)
Be careful when dealing with negative numbers. The way a modulo operation treats negatives differs between languages. In SQF truncated division is used, hence:
-12 % -10 = -2 -12 % 10 = -2 12 % -10 = 2 12 % 10 = 2