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)))