Function EN Version 1.90

@Min

Float List Mathematics NUMBER

Syntax

@Min(FN1;FN2);
@Min(FNLIST1;FN2);
@Min(FN1;FNLIST2);
@Min(FNLIST1;FNLIST2);

Description

Returns the minimum of FN/FNLIST FN1/FNLIST1 and FN/FNLIST FN2/FNLIST2. To do this, each element of FNLIST1 is compared with the corresponding element of FNLIST2. If one list is shorter, its last element is used for all missing elements. The same applies for FN1 is called with FNLIST2 or FNLIST1 is called with FN2. The smaller element in each comparison then appears in the result.

Example: @Min(FN1;FN2)

FN1:=10;
FN2:=15;
@Min(FN1;FN2);

returns 10

Example: @Min(FNLIST1;FN2)

FNLIST1:=10:12:18:25;
FN2:=17;
@Min(FNLIST1;FN2);

returns 10:12:17:17

Example: @Min(FN1;FNLIST2)

FN1:=17;
FNLIST2:=10:12:18:25;
@Min(FN1;FNLIST2);

returns 10:12:17:17

Example: @Min(FNLIST1;FNLIST2)

FNLIST1:=10:12:18:25;
FNLIST2:=14:11:34:23;
@Min(FNLIST1;FNLIST2);

returns 10:11:18:23

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