Difference between revisions of "Documentation/How Tos/Calc: MOD function"
From Apache OpenOffice Wiki
< Documentation | How Tos
(Initial content) |
m |
||
(9 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
− | __NOTOC__ | + | {{DISPLAYTITLE:MOD function}} |
+ | {{Documentation/CalcFunc MathematicalTOC | ||
+ | |ShowPrevNext=block | ||
+ | |PrevPage=Documentation/How_Tos/Calc:_QUOTIENT_function | ||
+ | |NextPage=Documentation/How_Tos/Calc:_EXP_function | ||
+ | }}__NOTOC__ | ||
== MOD == | == MOD == | ||
Returns the remainder when one integer is divided by another. | Returns the remainder when one integer is divided by another. | ||
− | |||
=== Syntax: === | === Syntax: === | ||
Line 9: | Line 13: | ||
: For integer arguments this function returns <tt>'''number'''</tt> modulo <tt>'''divisor'''</tt>, that is the remainder when <tt>'''number'''</tt> is divided by <tt>'''divisor'''</tt>. | : For integer arguments this function returns <tt>'''number'''</tt> modulo <tt>'''divisor'''</tt>, that is the remainder when <tt>'''number'''</tt> is divided by <tt>'''divisor'''</tt>. | ||
− | : This function is implemented as <tt>'''number - divisor * INT( number/divisor)'''</tt> , and this formula gives the result if the arguments are not integer. | + | : This function is implemented as <tt>'''number - divisor * INT(number/divisor)'''</tt> , and this formula gives the result if the arguments are not integer. |
− | |||
=== Example: === | === Example: === | ||
Line 19: | Line 22: | ||
: returns <tt>'''1.25'''</tt>. | : returns <tt>'''1.25'''</tt>. | ||
+ | {{SeeAlso|EN| | ||
+ | * [[Documentation/How_Tos/Calc: QUOTIENT function|QUOTIENT]] | ||
+ | * [[Documentation/How_Tos/Calc: INT function|INT]] | ||
− | + | * [[Documentation/How_Tos/Calc: Mathematical functions|Mathematical functions]] | |
− | |||
− | |||
− | + | * [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]] | |
+ | * [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}} | ||
+ | [[Category: Documentation/Reference/Calc/Mathematical functions]] |
Latest revision as of 14:57, 31 January 2024
Trigonometric
Hyperbolic
Rounding and remainders
Logarithm/Powers
Bessel functions
Miscellaneous
MOD
Returns the remainder when one integer is divided by another.
Syntax:
MOD(number; divisor)
- For integer arguments this function returns number modulo divisor, that is the remainder when number is divided by divisor.
- This function is implemented as number - divisor * INT(number/divisor) , and this formula gives the result if the arguments are not integer.
Example:
MOD(22; 3)
- returns 1, the remainder when 22 is divided by 3.
MOD(11.25; 2.5)
- returns 1.25.
See Also