multiple conditions in matrix
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
abdul rehman
le 10 Juil 2021
Commenté : abdul rehman
le 10 Juil 2021
I am receiving this error while applying multipe conditions in matrix
Code:
C= [rand(100,1),randi([0,2],100,1),randi([0,2],100,1),randi([5,12],100,1)]
d=C(C(:,2) == 1,: && (:,3) == 2, :)
0 commentaires
Réponse acceptée
Simon Chan
le 10 Juil 2021
Modifié(e) : Simon Chan
le 10 Juil 2021
Do you want this?
d=C(C(:,2) == 1 & C(:,3) == 2)
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Elementary Math dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!