フィルターのクリア

Creating variables larger than 8 bytes to pass between functions

3 ビュー (過去 30 日間)
tybo1mos
tybo1mos 2018 年 8 月 23 日
コメント済み: Walter Roberson 2018 年 8 月 23 日
I'm reading bytes from different places in a recorded data log file. Each byte that is read is are placed in an large double array (time, value1, value2 etc) which is then passed to another function. Each time I read a new byte I bit shift the previous value and add on the newly read value. Doing this i'm limited to using only 8 bytes for value1, value2 etc. Is there a way to create a variable that is say 16bytes in length that can be used for the bitshift. This 16byte variable would be placed in the array for a specific time value, and passed to another function to parse and decode.
  2 件のコメント
tybo1mos
tybo1mos 2018 年 8 月 23 日
Still having some troubles with my original data being changed. I'm trying to take a hex value such as: 31A2B3C4D5E6F7A8 (decimal=3576618712069240744) example: a=fi(3576618712069240744,0,80,0); >> x.hex ans = '000031a2b3c4d5e6f800'
This does allow me to now do a bitshift and add more vlaues, however the right 3 bytes not coming out to the original value that I entered? Any idea what i'm doing wrong?
Walter Roberson
Walter Roberson 2018 年 8 月 23 日
a = fi(uint64(3576618712069240744),0,80,0)

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

採用された回答

Walter Roberson
Walter Roberson 2018 年 8 月 23 日
Yes, if you use the Fixed Point Toolbox, such as https://www.mathworks.com/help/fixedpoint/ref/fi.html . My memory is that the limit is 32767 bits, but I am not certain of that at all and I am having difficulty finding the reference. A limit of 1023 bits is also coming to mind.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by