フィルターのクリア

can we write hexadecimal values in matlab too?

7 ビュー (過去 30 日間)
Imtiaz nabi
Imtiaz nabi 2022 年 3 月 4 日
コメント済み: Walter Roberson 2022 年 3 月 5 日
Hi there I want to write some hexadecimal values in matlab for example
// Add TOW-count message into HOW
if (iwrd==1)
sbfwrd |= ((tow&0x1FFFFUL)<<13);
// Compute checksum
sbfwrd |= (prevwrd<<30) & 0xC0000000UL; // 2 LSBs of the previous transmitted word
nib = ((iwrd==1)||(iwrd==9))?1:0; // Non-information bearing bits for word 2 and 10
chan->dwrd[iwrd] = computeChecksum(sbfwrd, nib);

採用された回答

Walter Roberson
Walter Roberson 2022 年 3 月 4 日
0x1FFFFu32
The C code is a bit weak in that it assumes unsigned long is 32 bits.
  4 件のコメント
Imtiaz nabi
Imtiaz nabi 2022 年 3 月 5 日
but when I try to store these in a variable it automatically converts into deciamal in another computer that is running a matlab 2019b why is my computer giving me an error?
Walter Roberson
Walter Roberson 2022 年 3 月 5 日
Starting in R2019b, you can write hexadecimal and binary values as literals using an appropriate prefix as notation. For example, 0x2A is a literal that specifies 42—and MATLAB stores it as a number, not as text.
So the reason for the difference between the r2019b system and your R2017b system is that MATLAB was improved as of R2019b to support hexadecimal constants.
Which is why earlier I said "in your version" of MATLAB that hex2dec and sscanf were your available choices.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by