The following example appears in the MATLAB tutorial:
X = [16 2 13; 5 11 8; 9 7 12; 4 14 1]
Using a single subscript
It's very simple.
It basically starts from the second element in this example and goes upto tenth element (column wise) in steps of 2 and deletes corresponding elements. The remaining elements result in a row vector.