User Tools

Site Tools


syntax:functions:rem
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


Previous revision
Next revision
syntax:functions:rem [2021/07/31 20:31] craigt
Line 1: Line 1:
 +====== Rem(dividend, divisor) ======
 +Category:  Number function
  
 +\\ 
 +=====Description=====
 +This function returns the remainder of the quotient of two numbers.
 +
 +\\ 
 +=====Arguments=====
 +^Argument^Type^Description^
 +|dividend|Number|The value being divided.|
 +|divisor|Number, non-zero|The value the //divident// is being divided by.|
 +\\ 
 +**Return value type:**  Number (Integer)
 +
 +\\ 
 +=====Remarks=====
 +This function performs division much as the expression //dividend// / //divisor// would, except that only the __remainder__ of the division, if there is any, is returned as whole number.
 +
 +\\ 
 +=====Examples=====
 +
 +  div(12,4) = 0
 +  div(15,3) = 0
 +  div(21,5) = 1  //Remainder only returned as a whole number
 +  div(-14,5) = -4  //Remainder only returned as a whole number
 +
 +\\ 
 +===== See also =====
 +  * [[syntax:functions:div|Div(dividend, divisor)]]
syntax/functions/rem.txt · Last modified: 2021/08/11 15:32 by craigt

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki