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

2 次查看(过去 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

采纳的回答

Stephen23
Stephen23 2020-1-31

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by