细胞中的Matlab Textscan细胞?

时间:2016-01-05 18:32:47

标签: matlab textscan

我有点问题。我知道如何避免它,但我不确定是最好的。

String = textscan('Hello_World','%s','delimiter','_')

这将返回{1x1个单元格},其中包含{2x1个单元格}:

String =
{2x1 cell}

我想要的是另外一个命令:

String = String{1}

产生我想要的东西:

String = 
'Hello'
'World'   

如果有人有好的建议,我会很高兴。

0 个答案:

没有答案