help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Same sequence of random number generators than under Matlab?


From: Alasdair McAndrew
Subject: Re: Same sequence of random number generators than under Matlab?
Date: Mon, 4 Jun 2012 22:26:00 +1000

Writing your own is a good idea.  Cleve Moler, here, speaks of the linear congruential generator 

x_{k+1} = ax_k (mod m)

with a,m = 16807, 2^31-1

which was in fact Matlab's internal random number generator until replaced by the Mersenne Twister.  You'll find some good links here; there are some PRNGs developed by the late George Marsaglia which are both far simpler, and have a far longer period, than the Mersenne Twister. 

For a Matlab implementation of the Wichmann-Hill PRNG (which works basically by adding up three floating point values and taking the fractional part as output), seehere.   This is a simple program which should work equally well in Matlab and Octave.

-Alasdair


On Mon, Jun 4, 2012 at 12:03 AM, Mathieu Dubois <address@hidden> wrote:
Hello,

I want to comapre the output of the Self-Organinzin Map algorithm under Matlab and Octave.

The algorithm is stochastic because, as in most training algorithm, the data are presented inrandom order.
In order to compare as precisely as possible the Matlab and Octave version it seems necessary to have the same sequence of random numbers.

Is there a way to do that?

I have tried the following:
rand('twister', 10);
s = rand(10, 1);
disp(s);
disp(mean(s));
disp(var(s));

The sequences are different (but the statistics are close).

Mathieu


_______________________________________________
Help-octave mailing list
address@hidden
https://mailman.cae.wisc.edu/listinfo/help-octave



--
Blog: http://amca01.wordpress.com
Web:  http://sites.google.com/site/amca01/
Facebook: http://www.facebook.com/alasdair.mcandrew

reply via email to

[Prev in Thread] Current Thread [Next in Thread]