Binary data processing in an algorithm

1 回表示 (過去 30 日間)
Amanpreet Singh
Amanpreet Singh 2015 年 3 月 30 日
コメント済み: Amanpreet Singh 2015 年 3 月 31 日
Hi I am writing a program that will operate only on binary numbers. Are there any right or left shift operation functions? Is there any way or function or I ll need to create an algorithm for their conversion? Will be very grateful.

採用された回答

Konstantinos Sofos
Konstantinos Sofos 2015 年 3 月 30 日
Hi
Does bitshift help you?
a = intmax('uint8');
s1 = 'Initial uint8 value %5d is %08s in binary\n';
s2 = 'Shifted uint8 value %5d is %08s in binary\n';
fprintf(s1,a,dec2bin(a))
for i = 1:8
a = bitshift(a,1);
fprintf(s2,a,dec2bin(a))
end
Initial uint8 value 255 is 11111111 in binary
Shifted uint8 value 254 is 11111110 in binary
Shifted uint8 value 252 is 11111100 in binary
Shifted uint8 value 248 is 11111000 in binary
Shifted uint8 value 240 is 11110000 in binary
Shifted uint8 value 224 is 11100000 in binary
Shifted uint8 value 192 is 11000000 in binary
Shifted uint8 value 128 is 10000000 in binary
Shifted uint8 value 0 is 00000000 in binary
Regards
  1 件のコメント
Amanpreet Singh
Amanpreet Singh 2015 年 3 月 31 日
Hi Thanks Sir for your reply. Regards

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumeric Types についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by