How do I generate 1000 random rows from an array only once, so that if I run the program again, it will still be the same set of randomly generated number previously
1 回表示 (過去 30 日間)
古いコメントを表示
% Generate a matrix named foo
foo = randn(10000,2);
% draw 1000 random samples
index = randsample(1:length(foo), 1000);
bar = foo(index,:);
Suppose I have the code above, I only want to generate 1000 random rows once. I do not want a different set of 1000 random row everytime I run the program again. Please help. Thank you
1 件のコメント
KSSV
2020 年 1 月 31 日
If you use randsample it will generate everytime a random array everytime. If you don't want this, run only once and save it.
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!