matrix row extraction help
1 回表示 (過去 30 日間)
古いコメントを表示
hi there, i have a very simple question. how do i extract certain rows from a matrix. for example say i have a matrix nxm and i want to extract every 7th row from that matrix. how do i do that? thanks in advance. SN
0 件のコメント
採用された回答
Andrei Bobrov
2013 年 3 月 13 日
編集済み: Andrei Bobrov
2013 年 3 月 13 日
x = randi(150,40,10); % your matrix
out = x(7:7:end,:);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!