Manual

458 Lists
Menu format By default, a List function is presented on the Math menu
using its descriptive name, not its common command
name. Thus the shorthand name CONCAT is presented as
Concatenate and POS is presented as Position.
If you prefer the Math menu to show command names
instead, deselect the
Menu Display option on page 2 of
the
Home Settings screen (see page 26).
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:
D
Select List
Select Make List
(or MAKELIST)
A
a
j
o
A
a
o
23
o
27
o
1
E
Sort Sorts the elements in a list in ascending order.
SORT(list)
Example:
SORT({2,5,3}) returns {2,3,5}