operation with logical array
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
pipor
el 4 de Sept. de 2023
Editada: Dyuman Joshi
el 4 de Sept. de 2023
c=[0 0 0 0]
a=[1 0 1 0]
b=[0 1 1 0]
b-a
c(find((b-a)>0))=1
if element a==0 and element b==1 i want to change element c in =1
Anyone can me suggest a best method to do this
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 4 de Sept. de 2023
Editada: Dyuman Joshi
el 4 de Sept. de 2023
c=[0 0 0 0];
a=[1 0 1 0];
b=[0 1 1 0];
c = (a==0)&(b==1)
%simplified
c = (~a)&b
Given the questions you have asked recently, I would strongly recommend you to take the free MATLAB Onramp tutorial to learn the essentials of MATLAB.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!