Function EN Version 1.90

@BitXor

Float List Logical NUMBER

Syntax

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

Description

Performs a bitwise logical EXCLUSIVE OR on FN/FNLIST FN1/FNLIST1 and FN/FNLIST FN2/FNLIST2 from.

Example: @BitXor(FN1;FN2)

FN1:=2;
FN2:=3;
@BitXor(FN1;FN2);

Example: @BitXor(FNLIST1;FN2)

FNLIST1:=1:2:3:4:5:6:7:8:9;
FN2:=10;

Example: @BitXor(FN1;FNLIST2)

FNLIST2:=11:22:33:44:55:66:77:88:99;

Example: @BitXor(FNLIST1;FNLIST2)

FNLIST1:=1:2:3:4:5:6:7:8:9;

FNLIST1:=1:2:3:4:5:6:7:8:9;

If the two lists have different lengths, the last element of the shorter list is repeated until the required length is reached.

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