odd and even index in cell

15 views (last 30 days)
NA
NA on 23 Apr 2019
Edited: KSSV on 23 Apr 2019
A={[113],[112],[42],[29],[113],[69],[86],[9],[0]};
B={[18],[14],[5],[39],[27],[11],[9],[7],[0]};
I want put even index in A to zero. New_A should be:
New_A={[113],[0],[42],[0],[113],[0],[86],[0],[0]}
Also put odd index in B to zero. New_B should be:
B={[0],[14],[0],[39],[0],[11],[0],[7],[0]};

Accepted Answer

KSSV
KSSV on 23 Apr 2019
Edited: KSSV on 23 Apr 2019
A={[113],[112],[42],[29],[113],[69],[86],[9],[0]};
B={[18],[14],[5],[39],[27],[11],[9],[7],[0]};
A(2:2:end) = {0} ;
B(1:2:end) = {0} ;

More Answers (0)

Community Treasure Hunt

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

Start Hunting!