フィルターのクリア

Extract the upper and the lower half of an integer

15 ビュー (過去 30 日間)
suzi freunden
suzi freunden 2012 年 6 月 1 日
Hi, is there a function that extract the upper half of an integer (most significants bits) and the lower half? Thanks

回答 (2 件)

per isakson
per isakson 2012 年 6 月 1 日
See: bitget
C = bitget(A, bit) returns the value of the bit at position bit in A.

Walter Roberson
Walter Roberson 2012 年 6 月 1 日
For anything other than 8 bit integers, typecast() the integer into the unsigned integer type which is half of the size. You may have to deal with byte order problems, though.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by