Chcking in two rows
2 ビュー (過去 30 日間)
古いコメントを表示
I have a matrix A and i want to check only two rows of this matrix,and i dont want to check all the matrix.For example A=[row1;row2;row3;row4;row5;row6] and i want to check and run only the rows 1 and 5.How i will do that?
1 件のコメント
回答 (1 件)
Star Strider
2015 年 4 月 15 日
I’m not sure what you’re doing, bu to address only the first two rows of ‘A’:
A(1:2,:);
2 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!