multiple conditions in matrix
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
abdul rehman
el 10 de Jul. de 2021
Comentada: abdul rehman
el 10 de Jul. de 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 comentarios
Respuesta aceptada
Simon Chan
el 10 de Jul. de 2021
Editada: Simon Chan
el 10 de Jul. de 2021
Do you want this?
d=C(C(:,2) == 1 & C(:,3) == 2)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Math en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!