delete row in matrix if the row contain "Inf" value
17 ビュー (過去 30 日間)
古いコメントを表示
Let's say:
A=[1 2 3 5
2 Inf Inf Inf ---->delete this row
3 1 7 5
9 Inf Inf Inf ---->delete this row
11 3 45 91 ]
Question: If i want to delete the row contain "Inf", how can I do that?
result_A=[1 2 3 5
3 1 7 5
11 3 45 91 ]
0 件のコメント
採用された回答
その他の回答 (2 件)
LU Chongkai
2020 年 4 月 12 日
Here is a way that don't change the original matrix:
B = A(any(~isinf(A),2),:)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!