Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to reject whole columns based on a condition

1 回表示 (過去 30 日間)
omar mahallawy
omar mahallawy 2019 年 3 月 14 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
A = [5 10 18 13
-2 8 -9 10
40 47 85 -30]
condiotion : remove columns with any negative numbers
result=[10
8
47]
kindly note that this is in a for loop

回答 (1 件)

Akira Agata
Akira Agata 2019 年 3 月 14 日
No need to use for-loop. Please try the following:
A = [5 10 18 13;
-2 8 -9 10;
40 47 85 -30];
idx = any(A<0);
result = A(:,~idx);

この質問は閉じられています。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by