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

yi1 = your matrix
yi1(10000:end,:) = [];

More Answers (1)

Another way. Assuming a 2D array:
yi1 = yi1(1:9999,:); % Extract first 9,999 rows

Categories

Find more on Operators and Elementary Operations 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!