フィルターのクリア

randperm(n,k) in R2011a

4 ビュー (過去 30 日間)
Andreas Lobinger
Andreas Lobinger 2016 年 8 月 17 日
回答済み: Thorsten 2016 年 8 月 17 日
I try to port some new (R2015b) code using randperm(n,k) back to pre-R2011a. And initially i thought i could use r = randperm(10); r(1:4); as replacement for randperm(10,4) but then
>> rng(11313)
>> randperm(10,10)
ans =
10 1 7 8 5 6 3 9 4 2
>> rng(11313)
>> randperm(10)
ans =
9 1 10 6 7 3 8 2 5 4
i cannot see a structure, how randperm operates.

回答 (1 件)

Thorsten
Thorsten 2016 年 8 月 17 日
We cannot have a look into the randperm function. So if it is essential for you program to produce the same sequence of random numbers, you have to use
r = randperm(10); r(1:4);
in your program, also in the R2015b version.

カテゴリ

Help Center および File ExchangeSparse Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by