
Intersect
Returns the list of the elements common to two lists.
INTERSECT({1,2,3,4}, {1,3,5,7}) returns {1,3}
Make List
Calculates a sequence of elements for a new list using the syntax:
MAKELIST(expression,variable,begin,end,increment)
Evaluates expression with respect to variable, as variable takes on values from begin to end values, taken at
increment steps.
Example:
In Home, generate a series of squares from 23 to 27:
Select List. Select Make List (or MAKELIST)
23 27 1
Sort
Sorts the elements in a list in ascending order.
SORT(list)
Example:
SORT({2,5,3}) returns {2,3,5}
510 Chapter 25 Lists
Komentarze do niniejszej Instrukcji