MATLAB: Sum two arrays using logical indices

arraylogical?MATLABsum

I want to sum two arrays
a = [ 1 2 3];
b = [2 3 1 ];
a_logical = [0 1 0];
a_logical = ~a_logical;
b_logical = [1 0 0];
b_logical = ~b_logical;
I want the sum of a + b to be
[ 1 0 3] + [0 3 1] = [1 3 4]
Any suggestion on how the above sum can be obtained using the logical indices stored in a_logical and b_logical?

Best Answer

c=a.*(a_logical)+b.*(b_logical)
c =
1 3 4
Related Question