Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - English

Change language to:
Français - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Elementary Functions > modulo

modulo

symmetric arithmetic remainder modulo m

pmodulo

positive arithmetic remainder modulo m

Calling Sequence

i=modulo(n,m)
i=pmodulo(n,m)

Arguments

n,m

integers

Description

modulo computes i= n (modulo m) i.e. remainder of n divided by m (n and m integers).

i = n - m .* int (n ./ m). Here the answer may be negative if n or m are negative.

pmodulo computes i = n - m .* floor (n ./ m), the answer is positive or zero.

Examples

n=[1,2,10,15];m=[2,2,3,5];
modulo(n,m)

modulo(-3,9)
pmodulo(-3,9)
<< min Elementary Functions ndims >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:09:40 CEST 2011