Matlab怎样从数组矩阵中随机取数?

2024-11-24 13:59:18
推荐回答(1个)
回答1:

try function 'randperm', for example:

a=[1 2 3 4 5 6 7 8 9 10];
b=a(randperm(length(a)));
x=b(1:5);