char to hex in file handling

1 次查看(过去 30 天)
Nidhi
Nidhi 2013-10-18
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??

回答(1 个)

Azzi Abdelmalek
Azzi Abdelmalek 2013-10-18
编辑:Azzi Abdelmalek 2013-10-18
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)

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by