我在MATLAB中有一组数字 例如,
a = [1 1 1; 2 2 1; 3 3 2; 4 5 1];
我想用字符串替换数字。
例如,1 ="苹果&#34 ;; 2 ="你好&#34 ;; 3 ="再见&#34 ;;我可以用其他数字代替,例如。,
a(a==1) = 999
a(a==2) = 998
但我需要通过替换字符串来完成同样的事情。对我来说不容易有人帮助我吗? 谢谢,马蒂尔德
答案 0 :(得分:5)
如果您的号码始终以1
开头,并且每个号码都应该被替换,那么这只是索引:
>> mp={'apples','hello','goodby'}
mp =
'apples' 'hello' 'goodby'
>> a = [1 1 1; 2 2 1; 3 3 2]
a =
1 1 1
2 2 1
3 3 2
>> mp(a)
ans =
'apples' 'apples' 'apples'
'hello' 'hello' 'apples'
'goodby' 'goodby' 'hello'
答案 1 :(得分:3)
这可能是处理单元格数组输出的字符串和数字的混合数据的一种方法 -
%// Numeric array and cell array of input strings
a = [1 1 1; 2 2 1; 3 3 2; 4 5 1];
names = {'apples','hello','goodbye'}
%// Create a cell array to store the mixed data of numeric and string data
a_cell = num2cell(a)
%// Get the mask where the numbers 1,2,3 are which are to be replaced by
%// corresponding strings
mask = ismember(a,[1 2 3])
%// Insert the strings into the masked region of a_cell
a_cell(mask) = names(a(mask))
代码运行 -
a =
1 1 1
2 2 1
3 3 2
4 5 1
names =
'apples' 'hello' 'goodbye'
a_cell =
'apples' 'apples' 'apples'
'hello' 'hello' 'apples'
'goodbye' 'goodbye' 'hello'
[ 4] [ 5] 'apples'
答案 2 :(得分:0)
我不知道,如果你真的想要replace
值,或者用它中的字符串创建一个大小相同的新数组。正如其他人指出的那样,你需要一个单元格数组来存储字符串。
a = [1 1 1; 2 2 1; 3 3 2; 4 5 1];
aStrings = cell(3,4)
aStrings(a==1) = {'apples'}