Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从下面给定的以下矩阵中随机选择一个数字?
A=[0.06 0.47 0.47]
我只想从上面的矩阵中随机选择一个数字。我在matlab环境中这样做。请帮忙。另外,是否可以假设 matlab 中的变量趋于零,就像我们在极限中所做的那样?
如果您的矩阵是M然后选择一个具有均匀概率的随机元素,您可以使用randi:
M
randi
M(randi(numel(M)))
是的,使用randi:
A(randi(numel(A)))