MATLAB: Deleting multiple rows in a matrix

deleting multiple rows

how can i completely remove the first 113475 rows in a (879999*1) matrix

Best Answer

your_mat = your_mat(113476:end,:);
Please read the Getting started part of the documentation.