Adjusting size of matrix when converting base 10 to binary

1 回表示 (過去 30 日間)
Samuel Brewton
Samuel Brewton 2021 年 2 月 16 日
編集済み: Stephen23 2021 年 2 月 16 日
I'm looking to convert a number (0-255) into binary and then put that into a 1x8 matrix returning 1 and 0's. The issue I'm having is fitting the vectors together since a number like 30 gives [1 1 1 1 0] rather than [0 0 0 1 1 1 1 0]. I'd prefer not to manually add in the first rows each time I get to the next 2^n.
Any help is appreciated.
NumBin = num2str(dec2bin(30)) - '0';
%Returns 1 1 1 1 0
NumBin = num2str(dec2bin(255)) - '0';
%Returns 1 1 1 1 1 1 1 1
%Looking for:
% 0 0 0 1 1 1 1 0
% 1 1 1 1 1 1 1 1

採用された回答

James Tursa
James Tursa 2021 年 2 月 16 日
Specify the number of binary digits to use. E.g.,
dec2bin(30,8)
  1 件のコメント
Samuel Brewton
Samuel Brewton 2021 年 2 月 16 日
編集済み: Stephen23 2021 年 2 月 16 日
Works perfectly! Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by