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.
matlab を使用してフォルダーからファイルにランダムにアクセスしようとしています。どうすればよいか提案していただけますか?randn関数を使用する予定ですが、方法がわかりません。
randn
通常ではなく、一様分布の乱数が必要だと思います。だからここに行く..
Files = dir('MyFolder'); N = size(Files,1) - 2; rand = randi(N,1); Random_filename = Files(rand+2,1).name;