deleting multiple rows in a matrix

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

 Accepted Answer

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

1 Comment

thank you, i takes time but i get the required output

Sign in to comment.

More Answers (1)

A(1:113475)=[]

1 Comment

This is not a correct answer. It should read: A(1:113475, :) = [ ]

Sign in to comment.

Categories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!