Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to reject whole columns based on a condition

1 Ansicht (letzte 30 Tage)
omar mahallawy
omar mahallawy am 14 Mär. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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

Antworten (1)

Akira Agata
Akira Agata am 14 Mär. 2019
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);

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by