I have two vectors A & B. If the values in vector A is zero then the corresponding value in vector B should be zero.

Example:

A=[1 2 3 0 4 4];

B=[4 5 2 1 0 2];

Output:

A=[1 2 3 0 4 4];

B=[4 5 2 0 0 2];

Since the value zero appears in vector A at index 4, the 4th index value in vector B should be set to zero.

Solution Stats

336 Solutions

214 Solvers

Last Solution submitted on Mar 02, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...