A = [8 1 5; 1 4 2; 7 5 2];
Max = 5
B = randi(Max);
现在我有一部分代码会生成一个随机数。我希望从数字列表中生成一个随机数,在这种情况下是第一行 ( 8 1 5
) 中列出的数字。
randi
是否有另一个函数会随机生成第一行中列出的一个数字并且也符合标准,而不是使用Max
?
根据您指定的内容,我建议以下内容:
A = [8 1 5; 1 4 2; 7 5 2];
% get a random number from row 1
index = randperm(length(A(1,:)));
number = A(1,index(1))
% get a randome number from row 1 that does not exceed Max
max = 5;
condition = find(A(1,:) <= max);
index = randperm(length(A(1,condition)));
number = A( 1, condition(index(1)))
希望这能给一些想法,
最简单的方法是使用arrayfun
:
B = arrayfun(@randi, A(1,:))