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?

 Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 12 Oct 2022
Modifié(e) : Fangjun Jiang le 12 Oct 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'

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by