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 = [1 2 3 5 7 9 6 5 0 3 2 3]
マトリックス列の位置をランダム化したい。そのように与えるBために:
B
B = [3 9 1 7 2 5 0 3 6 2 5 3]
どうすればこのMatlabを実行できますか?
試す
B = A(randperm(length(A)))
説明については、ドキュメントを参照してください。