MATLAB: How to delete a row from the matrix?

Suppose if I have a matrix as:
san = [ 1 2 3; 4 5 6; 7 8 9; 10 11 12; 13 14 15]
if I want to delete second row and all of its column then ow can I do this??

Best Answer

san(2,:) = []
Related Question