Previous Up Next

6.1.3  Length of a sequence or list

You can find the length of a sequence or list with any of the size, nops or length commands.

Examples

nops(a,e,i,o,u)

or:

size(a,e,i,o,u)

or:

length(a,e,i,o,u)
     
5           
nops([3,4,2])

or:

size([3,4,2])

or:

length([3,4,2])
     
3           

Previous Up Next