Delete rows from array
3 次查看(过去 30 天)
显示 更早的评论
I have an array called yi1
It has more than 10,000 rows.
How can I delete all rows from 10,000 upwards?
0 个评论
采纳的回答
更多回答(1 个)
Image Analyst
2016-2-5
Another way. Assuming a 2D array:
yi1 = yi1(1:9999,:); % Extract first 9,999 rows
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multidimensional Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!