How do I set a seed to generate different random initial numbers and storing them
82 ビュー (過去 30 日間)
古いコメントを表示
for kk = 1 : Iter
xD = rand(N,1)*2*pi; % Init Cond. Driver
end
3 件のコメント
Wiley Mosley
2020 年 7 月 3 日
I think you are wanting a random repeatable setup.
I think the best way to set that up is to review:
Essentially you need to set a random repeatable seed so that you can reinitialize and run with the same random values for refining your code.
rng(1,'twister');
採用された回答
その他の回答 (1 件)
Wiley Mosley
2020 年 7 月 3 日
編集済み: Wiley Mosley
2020 年 7 月 3 日
rng(1,'twister'); % init generator for random repeatable with seed 1
s = rng; % save generator settings as s
for kk = 1: Iter
xD = rand (N, 1) * 2 * pi; % Init Cond. Driver
end
disp(xD) %just to print out your xD values
rng(s) % Reset the generator
for kk = 1: Iter
xD = rand (N, 1) * 2 * pi; % Init Cond. Driver
end
disp(xD) %printing out the xD values again should show that they match
I believe somthing like this should help you.
9 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!