matlab如何在一组数组中随机抽取一个数?

2025-01-18 21:30:05
推荐回答(1个)
回答1:

s=[1 3 5 7 9];%数组
n=length(s);%数组长度
i=ceil(rand(1,1)*n)
s(i)