head(A) displays the first eight rows of an array, or table A in the Command Window without assigning it to a variable.
+head(A, k) displays the first k rows of A.
+B = head(...) returns the specified rows of A for any of the previous syntaxes, with B having the same data type as A.
+tail(A) displays the last eight rows of an array, or table A in the Command Window without assigning it to a variable.
+tail(A, k) displays the last k rows of A.
+B = tail(...) returns the specified rows of A for any of the previous syntaxes, with B having the same data type as A.
+