Previous Up Next

6.1.4  Getting the first element of a sequence or list

The head command finds the first element of a sequence or list.

Examples

head(A,B,C,D)
     
A           
head([0,1,2,3])
     
0           

Previous Up Next