SIZE inputVector resultVariable

Replaces the result variable with the number of elements contained by the input vector.

COPY 1,100 A
SIZE A sizeA
PRINT sizeA

The above program produced the following output:

sizeA: 100.0

For a more practical example, see the TAKE command.