Multidimensional Array indexing to a single vector
Mostra commenti meno recenti
I want to check to see if a portion of each column of my array meets a criteria and if it does give a value of 1 and if it doesn't, 0. So x=B(1:5,:)>10 and if B is a 10X10 array, I would like to have x be a 1X10 column vector of ones or zeros. I know this can be done with a loop, but is there anyway to do it without one?
Risposta accettata
Più risposte (1)
Honglei Chen
il 21 Giu 2012
0 voti
sum(B(1:5,:)>10)>0
1 Commento
Walter Roberson
il 21 Giu 2012
This would be equivalent to the any() code.
Categorie
Scopri di più su Matrices and Arrays in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!