matlab cell数据转换

      由于经常从txt文件中读取数据,选用textscan函数读取txt文件。读取的数据经常是cell形式的,经常需要转换为mat形式,网上学了两种方式,记录一下:

1.strs=cellfun(@str2num, cell);

2.str=char(cell);             data=char2num(str);

--------------------- 本文来自 jiang111_111shan 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/jiang111_111shan/article/details/44062949?utm_source=copy

 

%test为待转换的cell

for n=1:length(test)

x{n}=str2num(test{n});

end

for m=1:length(x)

y(m)=x{m}(1)

end

 

%y即为所得double类型数据

--------------------- 本文来自 长弓的坚持 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/wordwarwordwar/article/details/79255604?utm_source=copy

你可能感兴趣的:(matlab cell数据转换)