Cell array to 1x1 Vector/Cell

5 次查看(过去 30 天)
tom rawr
tom rawr 2012-3-1
评论: Stephen23 2023-12-1
Hi
If I have a cell array such as c = {'word1','word2'}
How can I take this and convert it into a 1x1 cell that has all the words in the 1 cell but seperated by a space? Is this possible?
So say the 1x1 matrix would be: word1 word2
Thanks
edit: cell2mat doesnt give me the space in between. it does "word1word2"
  1 个评论
Stephen23
Stephen23 2023-12-1
Since R2016b:
c = {'word1','word2'}
c = 1×2 cell array
{'word1'} {'word2'}
join(c)
ans = 1×1 cell array
{'word1 word2'}

请先登录,再进行评论。

回答(2 个)

Oleg Komarov
Oleg Komarov 2012-3-1
This is one way:
c2 = deblank(sprintf('%s ',c{:}));

G A
G A 2012-3-1
c1 = [c{1},' ',c{2}]

类别

Help CenterFile Exchange 中查找有关 Operators and Elementary Operations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by