Select rows and columns
105 ビュー (過去 30 日間)
古いコメントを表示
Hello,
In attachment my dataset. I have to select the 3 first columns and the 8 first rows, all the data in it. How do I do this?
0 件のコメント
採用された回答
Azzi Abdelmalek
2015 年 6 月 12 日
編集済み: Azzi Abdelmalek
2015 年 6 月 12 日
A(1:8,1:3)
Example
A=randi(9,10,5)
out=A(1:8,1:3)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!