how to delete row and column at a single command????????????
3 ビュー (過去 30 日間)
古いコメントを表示
A=[1 2 3 4 5; 6 7 8 9 10; 11 12 13 14 15; 16 17 18 19 20;];
I want to delete 2row and 2 column,4 row and 4 column
my require output is
a=[1 3 5; 11 13 15]
1 件のコメント
回答 (3 件)
KALYAN ACHARJYA
2018 年 8 月 12 日
編集済み: KALYAN ACHARJYA
2018 年 8 月 12 日
A(:,[2 4])=[]; A([2 4],:)=[];
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!