%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类型数据
matlab把cell矩阵转换成能处理的数据
最新推荐文章于 2025-04-12 23:14:34 发布
%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类型数据