Info

此问题已关闭。 请重新打开它进行编辑或回答。

Cell Arrays into normal functions

1 次查看(过去 30 天)
Nikhil
Nikhil 2011-9-29
关闭: MATLAB Answer Bot 2021-8-20
I have an array of cell arrays, s1=
'<1x2>'
'<1x2>'
'<1x2>'
'<1x2>'
i need to split them in to individual arrays so if
s1{1,:} = 'zzz' '23'
s1{2,:} = 'ppp' '43'
i want a string and double array in different arrays.
-- in realty the length of cell array is 40000 and each cell has a '<1x10>' so i need a way to split them and i am new to cell arrays and landed up into it because i was using from 'regexp'
  1 个评论
Jan
Jan 2011-9-29
The input has 4 elements with the values "<1x2>", and you wnat the result "'zzz', '23'" and "'ppp' '43'". I do not see a relation between the input and the output. I do not see a double array also.

回答(1 个)

Fangjun Jiang
Fangjun Jiang 2011-9-29
s1={'zzz' '23';'ppp' '43'};
a=s1(:,1)
b=cell2mat(s1(:,2))

此问题已关闭。

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by