delete null in matrix
21 ビュー (過去 30 日間)
古いコメントを表示
I have matrix M=[ 0 0 0 7.9286 10.1000 14.3714]
I want to delete null in matrix.
I want matrix M=[7.9286 10.1000 14.3714]
Thanks
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 12 月 14 日
編集済み: Azzi Abdelmalek
2013 年 12 月 14 日
M=[ 0 0 0 ; 7.9286 10.1000 14.3714]
M=M(all(M,2),:)
3 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!