How to shuffle data at the same way EVERYTIME random.seed(42)

24 ビュー (過去 30 日間)
R G
R G 2020 年 9 月 27 日
コメント済み: Steven Lord 2020 年 10 月 1 日
Hi guys,
I am looking for a way to shuffle and split my data to test 2 methods. I use 'shuffle' before using 'spliteachlabel'.
The reason I use shuffle is that I want to test many time, but shuffle will random shuffle my data without uncontronable which make the result unfair since the data is run for each method are not the same. So I wonder that there is a way to make the shuffle function run at exactly way.
I got the similar idea in Python, but dont know how to make it in Matlab
random.seed(42)
random.shuffle(imagePaths)

回答 (1 件)

David Goodmanson
David Goodmanson 2020 年 9 月 27 日
編集済み: David Goodmanson 2020 年 9 月 27 日
Hi RG
rng(12345) % for example
rand
rand
rng(12345)
rand % same values as before
rand
see help rand for more examples
  2 件のコメント
R G
R G 2020 年 10 月 1 日
編集済み: R G 2020 年 10 月 1 日
thanks for your comment, but I think you understand wrong the idea. rand is to distribute the random number, but what I want is to shuffle the number in my array.
Steven Lord
Steven Lord 2020 年 10 月 1 日
cards = ["A", 2:10, "J", "Q", "K"] + [" spade"; " club"; " diamond"; " heart"];
rng(12345)
order = randperm(numel(cards));
shuffledDeck1 = cards(order);
rng(12345)
order2 = randperm(numel(cards));
shuffledDeck2 = cards(order2);
isequal(shuffledDeck1, shuffledDeck2) % true

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCall Python from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by