Azzera filtri
Azzera filtri

multiple conditions in matrix

4 visualizzazioni (ultimi 30 giorni)
abdul rehman
abdul rehman il 10 Lug 2021
Commentato: abdul rehman il 10 Lug 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, :)

Risposta accettata

Simon Chan
Simon Chan il 10 Lug 2021
Modificato: Simon Chan il 10 Lug 2021
Do you want this?
d=C(C(:,2) == 1 & C(:,3) == 2)
  2 Commenti
Jonas
Jonas il 10 Lug 2021
probably
d=C(C(:,2) == 1 & C(:,3) == 2,:)
abdul rehman
abdul rehman il 10 Lug 2021
yes exactly

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by