Azzera filtri
Azzera filtri

char to hex in file handling

1 visualizzazione (ultimi 30 giorni)
Nidhi
Nidhi il 18 Ott 2013
Modificato: Azzi Abdelmalek il 18 Ott 2013
I have a text file with hex values. when I use fgets all the data gets saved in a char array in matlab. Now I want to process this as hex data. i.e. I want to have an array of hex with this data in it How can I do this??

Risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 18 Ott 2013
Modificato: Azzi Abdelmalek il 18 Ott 2013
If your data are imported in this form
str={'0F4 240'
'1E8 480'
'2DC 6C0'
'3D0 900'}
a=regexp(str,'\s','split');
b=reshape([a{:}],size(a{1},2),[])'
you can for example convert to decimal
out=cellfun(@hex2dec,b)

Community Treasure Hunt

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

Start Hunting!

Translated by