Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: RANDU


Related Topics

  
  The Free Information Society - Computer Generated Random Numbers
The RANDU routine is considered obsolete and is now completely undocumented, but it still exists in the VMS FORTRAN Run-Time Library and will always exist to support any old programs which still use it.
The algorithm RANDU uses to generate successive random numbers is: SEED = (65539*SEED) MOD 2**31 X = SEED/2**31 This is a linear congruential generator with: A = 65539 C = 0 M = 2**31 Note first that the modulus M for RANDU is 2**31 whereas the modulus M for MTH$RANDOM is 2**32.
The obsolete RANDU generator does require an odd seed value, but for the MTH$RANDOM generator the seed value alternates between even and odd values at each iteration, so there is no advantage to starting with an odd value.
www.freeinfosociety.com /computers/computerrandomnumbers.html   (9750 words)

  
 RANDU - Wikipedia, the free encyclopedia
RANDU is an infamous linear congruential pseudorandom number generator which has been used since the 1960s.
It is widely considered to be one of the most ill-conceived random number generators designed.
Notably, it does not have a full period, due to the poor choices of modulus and multiplier; it also fails the spectral test badly for dimensions greater than 2.
en.wikipedia.org /wiki/RANDU   (121 words)

  
 [No title]   (Site not responding. Last check: 2007-11-01)
AUTHR Authentication response of the global challenge from the peer, which together with the RANDU authenticates the peer to the server, 24bits.
RANDU Random number generated by the EAP server for unique challenge, 24 bits.
Since the RAND or RANDU given to a peer are accompanied with the message authentication code AT_MAC, and since the peer's NONCE_MT value contributes to AT_MAC, the peer is able to verify that the Lizhiming [Page 7] Internet Draft EAP CAVE Authentication 15 April, 2004 EAP CAVE message is fresh (not a replay).
www.faqs.org /ftp/internet-drafts/draft-lizhiming-pppext-eap-cave-00.txt   (9878 words)

  
 [No title]   (Site not responding. Last check: 2007-11-01)
The speed differences were randu rand53 rand53/randu Matlab R12 tic;x=rand(1e6,1);toc 0.072 0.110 1.53 0.087 tic;x=rand(5e6,1);toc 0.360 0.550 1.53 0.434 So there is a 53% slow up by doing this, and the octave code is now slower than Matlab.
I'd thought that maybe we could regain the speed reduction by precalculating the factor "1.0/4294967296.0" in randu, and similarly in rand53 "1.0/9007199254740992.0".
It should be noted that the state vector of randn in matlab is 2-element, and it appears it uses a simplier randu generator than the Mersenne Twister, so perhaps this speed difference is normal.
www.octave.org /text/mailing-lists/bug-octave/2004/495   (1373 words)

  
 URandomLib   (Site not responding. Last check: 2007-11-01)
RANDU was a multiplicative congruential generator with a = 65539 and m = 2147483648.
Today, RANDU is used only as an example of how not to construct a PRNG.
In addition, a comparison with RANDU is carried out, testing the randomness of individual bits.
www.mactech.com:16080 /articles/mactech/Vol.14/14.10/URandomLib   (2697 words)

  
 How Computers Generate Random Numbers - Chapter 3
We will soon find out why the infamous RANDU generator is considered a very poor random number generator.
This serial test for triples of outcomes was done on both the MTH$RANDOM and RANDU generators.
It is immediately obvious that the RANDU generator has failed miserably on the serial test for triples!
members.cox.net /srice1/random/random3.html   (1433 words)

  
 Gozo Farmhouse Ta Randu - Malta   (Site not responding. Last check: 2007-11-01)
Ta Randu is situated in the village of Qala, with magnificent views and peaceful walks.
The beautifully renovated farmhouse still maintains its authentic charm and lies at the end of an old lane, far behind the main road that runs through the village.
It has 4 bedrooms all ensuite, 3 of these lead up from a sheltered spiral staircase by the pool.
gozopolitan.org /ta_randu.html   (322 words)

  
 KCGL1 Help F90 Intrinsic_Procedures RANDU   (Site not responding. Last check: 2007-11-01)
RANDU (integer-1, integer-2, store) Class: Subroutine Computes a pseudorandom number as a single-precision value.
The integer arguments contain the seed for computing the random number.
CALL RANDU (I, J, X) If I and J are values 4 and 6, X stores the value 5.4932479E-04.
www.people.memphis.edu /HELP/F90/INTRINSIC_PROCEDURES/RANDU   (99 words)

  
 Linear congruential generator: LCG
Three implementations: KERAND (IRCC assambler version of RANDU), original RANDU (IBM Corporation (1970) in FORTRAN) and RANDU as used in SPSS are given in [31, pp.
[61, 10, 64, 65]; A history of the beginning of RANDU is given in [31, p.
Generator 1 and 6 are used in [58] and [57] to study transformation methods for non-uniform variates.
random.mat.sbg.ac.at /~charly/server/node3.html   (2119 words)

  
 Dave's Garden: Randu's Garden Site
Leave feedback for Randu or read feedback left by other members.
View the member feedback Randu has written of others.
For Randu, the time is 11:36 PM Randu lives in Seal Beach, CA Randu signed up on May 29, 2004
davesgarden.com /members/Randu   (142 words)

  
 [No title]   (Site not responding. Last check: 2007-11-01)
* double precision randu double precision random_low, random_med open(unit=10,file='output_randu2.dat',status='new') random_low=randu() do 10 i=1,2500 random_med=randu() write(10,*), random_low, random_med random_low=random_med 10 continue * * Now view the 2D plot in 'output_randu2.dat' * using Matlab.
* end ******************************************************************* double precision function randu () * * This function is a modification of ranu() given * in Chapter 11: Monte Carlo.
* Note that the parameters q,r have been modified * according to randu's a,m.
monod.biomath.nyu.edu /index/book-supply/randu2D.f   (129 words)

  
 [No title]   (Site not responding. Last check: 2007-11-01)
randu package:base R Documentation _R_a_n_d_o_m _N_u_m_b_e_r_s _f_r_o_m _C_o_n_g_r_u_e_n_t_i_a_l _G_e_n_e_r_a_t_o_r _D_e_s_c_r_i_p_t_i_o_n: 400 triples of successive random numbers were taken from the VAX FORTRAN function RANDU running under VMS 1.5.
This can be shown theoretically to be true for all triples from the RANDU generator.
Under VMS versions 2.0 and higher, this problem has been fixed.
www.eco.utexas.edu /doc/R/library/base/help/randu   (174 words)

  
 How Computers Generate Random Numbers - Chapter 4
The algorithm RANDU uses to generate successive random numbers is:
Note first that the modulus M for RANDU is 2**31 whereas the modulus M for MTH$RANDOM is 2**32.
The RANDU generator should only be started with an odd SEED value, since even initial SEED values can result in sequences with very short periods.
home1.gte.net /deleyd/random/random4.html   (2057 words)

  
 Computer Generated Random Numbers
SYNOPSIS This paper presents a number of techniques for analyzing a computer generated sequence of random numbers.
The following table summarizes the cycles for odd values of SEED: TABLE 5.2.1 RANDU WITH ODD VALUES OF SEED CYCLE LENGTH OF CYCLE <1> 536,870,912 <5> 536,870,912 Even values of SEED do not have it so nice.
These SEED values are treated by RANDU as if the SEED value were 1, and they result in the cycle <1>.
world.std.com /~franl/crypto/random-numbers.html   (10155 words)

  
 Computer Generated Random Numbers
COMPUTER GENERATED RANDOM NUMBERS by David W. Deley c1991 SYNOPSIS This paper presents a number of techniques for analyzing a computer generated sequence of random numbers.
The algorithm RANDU uses togenerate successive random numbers is: SEED = (65539*SEED) MOD 2**31 X = SEED/2**31 This is a linear congruential generator with: A = 65539 C = 0 M = 2**31 Note first that the modulus M for RANDU is 2**31 whereas the modulus M for MTH$RANDOM is 2**32.
These SEED values are treated by RANDU as if the SEED value were 1, and they result in the cycle
www.virtualschool.edu /mon/Crypto/RandomNumberMath   (10174 words)

  
 [No title]   (Site not responding. Last check: 2007-11-01)
for the modulus were those made by the notorious pseudo-random number generator known as "RANDU", popular in the early 1970s.
By rotating the figure (as described below), one can easily see what was wrong with this very popular generator.
By contrast, go here to see an even worse variant of RANDU, and by contrast here to examine the so-called "Minimal Standard" to see a much better variant.
etsuodt.tamu-commerce.edu /AcademicOrganizations/sigmaxi/hopftorii/testap6.html   (161 words)

  
 Encyclopedia Galactica - Terminus
By 12,088 GE (20 FE), however, Randu Darrell (12,050-12,120 GE) was building the first of his small, economical interstellar spacecraft.
By the early years of the 4th century, the power of the Independent Trading Worlds had grown to the point where they dared once again openly defy the power of the decaying Autocracy on Terminus.
By 310 FE, the Association of Independent Traders, under the leadership of Boric Darrell's sons Randu (241-314 FE) and Franssart (250-327 FE), was planning to rise up against the government of Indbur III.
www.asimovonline.com /oldsite/EG_Terminus.html   (5225 words)

  
 94121001.HTM
This algorithm is singled out for special scorn and abuse in Knuth's Volume 2 (section 3.3.4, page 104 of the 2nd edition): "...
His problem can be found at the top of page 416 ("A Universal Statistical Test for Random Bit Generators", proceedings of Crypto 90, pp.
"The test can be implemented by using a table (denoted below as TAB) of size 2^L that stores for each L-bit block the time index of its most recent occurrence." Unfortunately for Maurer, RANDU has L=31, so he's building and using an array of 2^31 elements.
www.ciphersbyritter.com /NEWS2/94121101.HTM   (627 words)

  
 ~*RaNdU*~   (Site not responding. Last check: 2007-11-01)
She has back clevage, cooties and big freshman hands.
Mabey one day you can go where many men have gone, Randu's hand.
Randu's mother, the hawk, gave her a book of pick up lines when Randu expressed her deep sadness because she can't find a b/f.
www.angelfire.com /emo/pinksparkle/Randu   (124 words)

  
 B    Classical LCGs
189]: Many multiplicative linear congruential generators are descendants of the infamous RANDU (System/360 Scientific Subroutine Package, Version III, Programmer's Manual.
Three implementations: KERAND (IRCC assambler version of RANDU), original RANDU (IBM Corporation (1970) in FORTRAN) and RANDU as used in SPSS are given in [
A history of the beginning of RANDU is given in [
crypto.mat.sbg.ac.at /results/karl/server/node4.html   (1511 words)

  
 R: Random Numbers from Congruential Generator RANDU   (Site not responding. Last check: 2007-11-01)
400 triples of successive random numbers were taken from the VAX FORTRAN function RANDU running under VMS 1.5.
A data frame with 400 observations on 3 variables named
In three dimensional displays it is evident that the triples fall on 15 parallel planes in 3-space.
www.stat.umn.edu /R/library/base/html/randu.html   (160 words)

  
 Demon 27 Script   (Site not responding. Last check: 2007-11-01)
Jason is stading now, his arm around Glenda's
Randu is setting Harry down on the couch.
I have to give Etrigan the benefit of
members.aol.com /dwaynem595/site/Demon_27_Script02.html   (166 words)

  
 ipedia.com: Pseudorandom number generator Article   (Site not responding. Last check: 2007-11-01)
Defects exhibited by a flawed PRNG may range from unnoticeable to ridiculous.
The RANDU random number algorithm used for decades on mainframe computers was flawed, and much research work of that time is less reliable than it should have been as a result.
Sometimes, but not always, modeling problems are noticed and lead to improvements in PRNGs.
www.ipedia.com /pseudorandom_number_generator.html   (686 words)

  
 Sebuah Perjalanan
posted by Randu @ 12:39 AM 0 comments
posted by Randu @ 5:37 AM 0 comments
Dan sebilah senyum dalam toleh itu, yang telah merawat sebuah debar di setiap harinya.
randurini.blogspot.com   (1220 words)

  
 [No title]   (Site not responding. Last check: 2007-11-01)
randu's Xanga Site - 11/8/2005 11:06:09 AM jai guru deva, om
Posted 11/8/2005 at 11:06 AM - email it
Note: your comment will appear in randu's local time zone:
www.xanga.com /randu/383273193/item.html   (152 words)

  
 Ta Randu Apartments & Farmhouses - Malta   (Site not responding. Last check: 2007-11-01)
Home > Category Index > Ta Randu Apartments & Farmhouses
The displayed information is reproduced as it was received from the subscriber.
No guarantee is made regarding the correctness of that information.
www.planetsoftpages.com /entry/12469   (141 words)

  
 The Unofficial Randu Singh Chronology
WHO'S WHO - INDEXES - HISTORY OF THE DCU - MESSAGE BOARD - SEARCH ENGINE
elow is the definitive list of appearances of Randu Singh in chronological order.
Flashback sequences or story entries will be followed by a [Flashback] note.
www.dcuguide.com /chronology.php?name=randusingh   (191 words)

  
 AVS Forum Members Theaters - Randu Gallery - Powered by PhotoPost
AVS Forum Members Theaters - Randu Gallery - Powered by PhotoPost
Home » Members Gallery of Theaters » Randu
No information may be posted elsewhere without written permission.
gallery.avsforum.com /showgallery.php?cat=500&ppuser=57396   (65 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.