How to combine two binary columns
3 views (last 30 days)
Show older comments
Ennio Malvati
on 12 Oct 2022
Edited: Fangjun Jiang
on 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?
0 Comments
Accepted Answer
Fangjun Jiang
on 12 Oct 2022
Edited: Fangjun Jiang
on 12 Oct 2022
a=[0 1 0 0 1;1 0 1 1 0]
s=sprintf('%d%d\n',a(:))
Or
b=dec2bin(a)
c=reshape(b,2,[])
d=c'
0 Comments
More Answers (0)
See Also
Categories
Find more on Language Fundamentals in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!