gpt4 book ai didi

matlab - 将字符串转换为数组编号

转载 作者:太空宇宙 更新时间:2023-11-03 20:12:13 25 4
gpt4 key购买 nike

如何将字符串转换为数字数组?例如:str='1,2,3,4.5' 到 number=[1 2 3 4.5]

我写了下面的代码,但是有问题。

str='1,2,3,4.5';
tmp = regexp (str,',','split');
tmp2=[];
for(i=1:length(tmp))
tmp2(i)=cell2mat(tmp(i))
end

最佳答案

从技术上讲,@ame.b 的回答是正确的。但是为了多样性,这种情况下也可以这样,因为分隔符是,:

str2num(str)

关于matlab - 将字符串转换为数组编号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8429199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com