How I can convert a binary number into Matrix
Show older comments
I have 100110101010
I want 10
01
10
10
10
10
1 Comment
C = '100110101010'
M = reshape(C,2,[]).'
Accepted Answer
More Answers (0)
Categories
Find more on Logical 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!