0

我正在使用此代码通过包含此类文本的文本字段获取输入的字符串( 1,1,1,3,4,7,9,9,9 ),然后我将其拆分取决于,以存储每个数组中的数字作为 Matlab 中的结果,但是当我使用 str2double 作为 temp 时出现问题我给出错误我认为我在错误的地方使用它

代码:

points = get(handles.pointstxt,'String');
tmp = regexp(points,'([^ ,:]*)','tokens');
tmp
notesvector = cat(2,tmp{:})

结果如下所示: 在此处输入图像描述

但我想让它像这样: 在此处输入图像描述

4

1 回答 1

0
points = get(handles.pointstxt,'String');
tmp = regexp(points,'([^ ,:]*)','tokens');
notesvector = cat(2,tmp{:})
c = str2double(notesvector)
于 2016-03-27T00:27:53.153 回答