MATLAB: Superimposing one matrix on another

matrix manipulation

m =
120 0 0 0 100
120 0 0 0 100
120 0 0 0 100
120 0 0 0 100
120 0 0 0 100
120 0 0 0 100
m1 =
85 100 170
85 170 100
100 85 170
100 170 85
170 100 85
170 85 100
Let's say I have these 2 matices. I want to create m2 from m and m1:
m2 =
120 85 100 170 100
120 85 170 100 100
120 100 85 170 100
120 100 170 85 100
120 170 100 85 100
120 170 85 100 100
How would I go about doing this?

Best Answer

m2=m;
m2(m2==0)=m1