Two matrices comparison

1 Ansicht (letzte 30 Tage)
Claire Redfield
Claire Redfield am 16 Jun. 2012
%I have two matrices, a=[1 2 3]; b=[0 1 0]; %How can i get a1=a if b=1 and a1=0 if b=0, So that a1=[0 2 0]?Thanks!

Akzeptierte Antwort

Ellen
Ellen am 16 Jun. 2012
a1=a.*b;
the dot before the multiplication sign makes sure the multiplication is done elment by element, so a1(1)=a(1)*b(1)......

Weitere Antworten (0)

Kategorien

Mehr zu Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by