deleting multiple rows in a matrix
古いコメントを表示
how can i completely remove the first 113475 rows in a (879999*1) matrix
1 件のコメント
varun sahni
2015 年 11 月 2 日
m=rand(879999,1) m(1:113475,:)=[]
採用された回答
その他の回答 (1 件)
Azzi Abdelmalek
2013 年 2 月 15 日
A(1:113475)=[]
1 件のコメント
Brian Russell
2021 年 4 月 24 日
This is not a correct answer. It should read: A(1:113475, :) = [ ]
カテゴリ
ヘルプ センター および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!