我有一个像
这样的垂直矩阵names = {
11
22
33
44
55
}
我希望将相同的字符串连接到所有类似
names = {
11nere
22nere
33nere
44nere
55nere
}
我怎么能在matlab中做到这一点?
答案 0 :(得分:2)
这一个班轮应该这样做
names = cellfun(@(x)[num2str(x), 'nere'], names, 'uniformoutput', false);
我假设names
单元格数组包含数字条目而不是字符串开头 - 否则它更简单,
names = cellfun(@(x)[x, 'nere'], names, 'uniformoutput', false);