Logical left shift and truncate bit length

I need to convert a decimal number to binary and perform a left shift operation.
Ex: If the decimal is 135, its binary is '1000 0111'. After left shift I need '0000 1110'. The bitshift() is giving '1000 01110'. How can I truncate this to remove the msb?

回答 (1 件)

Adam
Adam 2017 年 2 月 9 日

0 投票

Just throw away the first element of the array e.g.
res = dec2bin( bitshift( 135, 1 ) );
res = res( 2:end );

カテゴリ

ヘルプ センター および File ExchangeNumeric Types についてさらに検索

タグ

質問済み:

2017 年 2 月 9 日

回答済み:

2017 年 2 月 9 日

Community Treasure Hunt

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

Start Hunting!

Translated by