How to combine two binary columns

9 vues (au cours des 30 derniers jours)
Ennio Malvati
Ennio Malvati le 12 Oct 2022
Modifié(e) : Fangjun Jiang le 12 Oct 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?

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 Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by