MATLAB: Modify data stream by equating odd position=0

data streamevenoddposition;

Dear sir/Ma'am
I have a data x=[1 2 3 4 5………k]. Now I want a new data y=[0 2 0 4 0 6……..k] from 'x' i.e, in new data stream the odd position's value will be '0' of 'x',rest values will be remain same as 'x'.and also want z= new data stream the even position's value will be '0' of 'x'.
What will be the matlab code?

Best Answer

k = 10;
x = 1:k;
y = x;
y(1:2:end) = 0;
z = x;
z(2:2:end) = 0;