Issue with load from text file with hex data

1 visualizzazione (ultimi 30 giorni)
Sandeep Acharya
Sandeep Acharya il 1 Dic 2021
Risposto: Mathieu NOE il 1 Dic 2021
Create a text file with 0xd080 in the text file
use the command load('textfilename')
The value returned is 57472 however the actual value should have been 53376
Even if i use load('textfilename','-ascii') also does not solve the problem. Still invalid data is returned.
How to fix this problem?

Risposte (1)

Mathieu NOE
Mathieu NOE il 1 Dic 2021
my 2 cents suggestion
>> a = readlines('textfilename.txt')
a =
"0xd080 "
>> b = hex2dec(char(a))
b =
53376

Categorie

Scopri di più su Data Import and Export in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by