32
edits
(Created page with "== random == how to get equal matlab random numbers in octave - using twister(!) algorithm? * terminology: https://en.wikipedia.org/wiki/Mersenne_twister#Pseudocode * nice2k...") |
No edit summary |
||
Line 1: | Line 1: | ||
== random == | * Owner of http://mxeoctave.osuv.de | ||
* markuman@gmail.com (Mail, Gtalk) | |||
* markuman@jabber.ccc.de (XMPP) | |||
* markuman on irc.freenode.net | |||
* https://keybase.io/notagain | |||
* https://github.com/markuman/ | |||
=== random === | |||
how to get equal matlab random numbers in octave - using twister(!) algorithm? | how to get equal matlab random numbers in octave - using twister(!) algorithm? | ||
Line 6: | Line 13: | ||
* nice2know: http://stackoverflow.com/questions/13735096/python-vs-octave-random-generator | * nice2know: http://stackoverflow.com/questions/13735096/python-vs-octave-random-generator | ||
=== initial situation === | ==== initial situation ==== | ||
* ruby and python using twister algo as default | * ruby and python using twister algo as default | ||
Line 48: | Line 55: | ||
=== how to get the right seed states in octave? === | ==== how to get the right seed states in octave? ==== | ||
rand('twister',0) | rand('twister',0) | ||
Line 102: | Line 109: | ||
=== TODO === | ==== TODO ==== | ||
* Find the `seed` stuff in octave source | * Find the `seed` stuff in octave source |
edits