hex2dec return error

4 visualizzazioni (ultimi 30 giorni)
Jimmy Zhao
Jimmy Zhao il 2 Giu 2020
Modificato: James Tursa il 3 Giu 2020
>> hex2dec(238a)
hex2dec(238a)
Error: Invalid expression. Check for missing multiplication operator, missing or unbalanced
delimiters, or other syntax error. To construct matrices, use brackets instead of parentheses.

Risposte (2)

David Hill
David Hill il 2 Giu 2020
hex2dec('238a');

Steven Lord
Steven Lord il 2 Giu 2020
Since you're using release R2019b you can directly enter hex and binary numbers.
>> x = 0x238a
x =
uint16
9098
See the Release Notes for more information.
  2 Commenti
Jimmy Zhao
Jimmy Zhao il 2 Giu 2020
Actually, I want to read form a file with hex data and plot to them. I also want to check if they are negative numbers (> 0x7FFFFFFF). COnvert them to a negative number is it is. which funcation that I can use?
Thanks,
Jimmy
James Tursa
James Tursa il 3 Giu 2020
Modificato: James Tursa il 3 Giu 2020
If you are reading a 2's complement hex pattern for a known sized integer, you can just use the simple test you proposed. You could of course typecast the result into a signed integer and then check the sign, but it will give you the same result as the simple test you proposed. If you actually need the value, then just:
u = the unsigned uint16 number
s = typecast(u,'int16'); % the signed int16 number with same bit pattern as u

Accedi per commentare.

Categorie

Scopri di più su Digital Input and Output in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by