matlab中垂直矩阵中的字符串连接

时间:2012-08-13 19:00:21

标签: string matlab

我有一个像

这样的垂直矩阵
names = {
11
22
33
44
55
}

我希望将相同的字符串连接到所有类似

names = {
11nere
22nere
33nere
44nere
55nere
}

我怎么能在matlab中做到这一点?

1 个答案:

答案 0 :(得分:2)

这一个班轮应该这样做

names = cellfun(@(x)[num2str(x), 'nere'], names, 'uniformoutput', false);

我假设names单元格数组包含数字条目而不是字符串开头 - 否则它更简单,

names = cellfun(@(x)[x, 'nere'], names, 'uniformoutput', false);