Example

To transfer the contents of List 1 (2, 3, 6, 5, 4) to column 1, and the

 

contents of List 2 (11, 12, 13, 14, 15) to column 2 of Matrix Answer

 

Memory

 

*(LIST)(LμM)

 

(List)@ (List)AU

STo count the number of data items in a list[OPTN]-[LIST]-[Dim]

*(LIST)(Dim)(List) <list number 1 - 26> U

• The number of cells a list contains is its “dimension.”

Example

To count the number of values in List 1 (36, 16, 58, 46, 56)

*(LIST)(Dim)

(List)@U

STo create a list by specifying the number of data items

[OPTN]-[LIST]-[Dim]

Use the following procedure to specify the number of data in the assignment statement and create a list.

<number of data n> ?*(LIST)(Dim)(List) <list number 1 - 26> U (n = 1 - 999)

Example

To create five data items (each of which contains 0) in List 1

 

D?*(LIST)(Dim)

 

(List)@U

You can view the newly created list by entering the STAT

mode.

 

STo replace all data items with the same value[OPTN]-[LIST]-[Fill]

*(LIST)(Fill) <value> (List) <list number 1 - 26> U

 

Example

To replace all data items in List 1 with the number 3

 

*(LIST)(Fill)

B (List)@U

The following shows the new contents of List 1.

3-6