Function EN Version 1.90

@Modulo

Float List Mathematics NUMBER

Syntax

@Modulo(FN1;FN2);
@Modulo(FNLIST1;FN2);

Description

Calculates the remainder of the integer division of FN/FNLIST FN1/FNLIST1 durch FN FN2. Decimal places are ignored and no negative remainders are returned; therefore FN1/FNLIST1 and FN2 should be positive integers.

Example: @Modulo(FN1;FN2)

FN1:=41;
FN2:=7;
@Modulo(FN1;FN2);

returns 6

Example: @Modulo(FNLIST1;FN2)

FNLIST1:=16:34:81:43;
FN2:=8;
@Modulo(FNLIST1;FN2);

returns 0:2:1:3

Note : This text was machine-translated and may contain inaccuracies.