MATLAB: Trouble with converting dec2bin

dec2bin

X=
0
2
4
6
Y =
1
3
5
7
i want to convert X & Y to binary
please help me

Best Answer

x=[1 3 5 7];
outx=dec2bin(x)
Related Question