Possible Duplicate:
Can someone explain this example of deleting elements from a matrix in MATLAB?
i have some trouble in matlab and please help me suppose we have this matrices
X =
16 2 13
5 11 8
9 7 12
4 14 1
i want to understand how this command delete elements from this matrices and what will be as a result
X(2:2:10) = []
thanks very much i add also result of this command
16 9 2 7 13 12 1
but it is unclear for me