Div (Float function): Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
mNo edit summary |
||
(13 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Template:Float:Div subtitle}} | {{Template:Float:Div subtitle}} | ||
The <var>Div</var> [[Intrinsic classes|intrinsic]] function returns the integer part of the result of dividing the method object by the method argument. | |||
the method object by the method argument. | |||
The numbers to be divided are first rounded to the nearest integer, including zero. | The numbers to be divided are first rounded to the nearest integer, including zero. Any remainder from the division is ignored. | ||
Any remainder from the division is ignored. | |||
==Syntax== | ==Syntax== | ||
{{Template:Float:Div syntax}} | {{Template:Float:Div syntax}} | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>% | <tr><th>%number</th> | ||
<td>A variable to receive the integer part of the quotient. </td></tr> | <td>A variable to receive the integer part of the quotient. </td></tr> | ||
<tr><th> | |||
<td>A Float value to be divided by the method argument, | <tr><th>float</th> | ||
<tr><th> | <td>A <var>Float</var> value to be divided by the method argument, <var class="term">divisor</var>. </td></tr> | ||
<tr><th>divisor</th> | |||
<td>A non-zero numeric value. A value of 0, or a value that rounds down to 0, causes a request cancellation.</td></tr> | <td>A non-zero numeric value. A value of 0, or a value that rounds down to 0, causes a request cancellation.</td></tr> | ||
</table> | </table> | ||
==Usage notes== | |||
<ul> | |||
<li><var>Div</var> is available as of <var class="product">Sirius Mods</var> Version 7.3. | |||
</ul> | |||
==Examples== | ==Examples== | ||
The following statement | <ol> | ||
the number in %x (rounded) by the number in %y (rounded): | <li>The following statement sets <code>%z</code> to the integer quotient from the division of the number in <code>%x</code> (rounded) by the number in <code>%y</code> (rounded): | ||
<p class="code">%z = %x:div(%y) | |||
The following statement | </p> | ||
<li>The following statement sets <code>%z</code> to <code>-95</code>: | |||
<p class="code">%z = -191.4:div(2.3) | |||
</p></ol> | |||
==See also== | ==See also== | ||
[[ | The <var>[[Modulus_(Float_function)|Modulus]]</var> function returns the remainder of a division. | ||
{{Template:Float:Div footer}} | |||
Latest revision as of 17:36, 2 November 2012
Integer division (Float class)
The Div intrinsic function returns the integer part of the result of dividing the method object by the method argument.
The numbers to be divided are first rounded to the nearest integer, including zero. Any remainder from the division is ignored.
Syntax
%number = float:Div( divisor)
Syntax terms
%number | A variable to receive the integer part of the quotient. |
---|---|
float | A Float value to be divided by the method argument, divisor. |
divisor | A non-zero numeric value. A value of 0, or a value that rounds down to 0, causes a request cancellation. |
Usage notes
- Div is available as of Sirius Mods Version 7.3.
Examples
- The following statement sets
%z
to the integer quotient from the division of the number in%x
(rounded) by the number in%y
(rounded):%z = %x:div(%y)
- The following statement sets
%z
to-95
:%z = -191.4:div(2.3)
See also
The Modulus function returns the remainder of a division.