How to combine two binary columns

7 visualizaciones (últimos 30 días)
Ennio Malvati
Ennio Malvati el 12 de Oct. de 2022
Editada: Fangjun Jiang el 12 de Oct. de 2022
I have a table like this: [0 1 0 0 1, 1 0 1 1 0]
and i want to combine binary the two columns in order to obtain a column like this:
[01, 10, 01, 01, 10]. Ho can I do this?

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 12 de Oct. de 2022
Editada: Fangjun Jiang el 12 de Oct. de 2022
a=[0 1 0 0 1;1 0 1 1 0]
a = 2×5
0 1 0 0 1 1 0 1 1 0
s=sprintf('%d%d\n',a(:))
s =
'01 10 01 01 10 '
Or
b=dec2bin(a)
b = 10×1 char array
'0' '1' '1' '0' '0' '1' '0' '1' '1' '0'
c=reshape(b,2,[])
c = 2×5 char array
'01001' '10110'
d=c'
d = 5×2 char array
'01' '10' '01' '01' '10'

Más respuestas (0)

Categorías

Más información sobre Tables en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by