3

我有一个垂直矩阵

names = {
11
22
33
44
55
}

我想将相同的字符串连接到所有喜欢的人

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

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

4

1 回答 1

2

这一个班轮应该做到这一点

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

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

names = cellfun(@(x)[x, 'nere'], names, 'uniformoutput', false);
于 2012-08-13T19:07:47.343 回答