Delete rows from array

1 view (last 30 days)
Benjamin Cowen
Benjamin Cowen on 2 Feb 2016
Answered: Image Analyst on 5 Feb 2016
I have an array called yi1
It has more than 10,000 rows.
How can I delete all rows from 10,000 upwards?

Accepted Answer

James Tursa
James Tursa on 2 Feb 2016
yi1 = your matrix
yi1(10000:end,:) = [];

More Answers (1)

Image Analyst
Image Analyst on 5 Feb 2016
Another way. Assuming a 2D array:
yi1 = yi1(1:9999,:); % Extract first 9,999 rows

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!