Sponsored Content
Full Discussion: Random Numbers - Perl
Top Forums Shell Programming and Scripting Random Numbers - Perl Post 302301154 by otheus on Thursday 26th of March 2009 04:19:36 AM
Old 03-26-2009
Original Poster is a sockpuppet of one who evaded a ban.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Random numbers without repetition

Is anyone know some scripts to generate random number without repetition using bash; for example generate 10 different random numbers. Thanks (8 Replies)
Discussion started by: asal_email
8 Replies

2. Shell Programming and Scripting

genrating pseudo random numbers

I want to generate the file in following format -------------------------------------- mov t1, %r1 mov t2, %g1 mov t3, %o1 . . . . m times add %r1, %g1, %o1 add %r2, %g2, %o2 . . . n times ------------------------------------------- (7 Replies)
Discussion started by: hack_tom
7 Replies

3. Shell Programming and Scripting

Random numbers from 0 to 1000

Hello All, I want to make a simple script which generate random number from 0 to 1000. and simply display it. Plz HELP!!!!!! Regards, Waqas Ahmed (2 Replies)
Discussion started by: wakhan
2 Replies

4. Shell Programming and Scripting

Random NUmbers Generation with out repetation

Hi I have the below code MAXCOUNT=10 count=1 echo echo "$MAXCOUNT random numbers:" echo "-----------------" while # Generate 10 ($MAXCOUNT) random integers. do number=$ + 1 ] "echo $number" let "count += 1" # Increment count. done But aftre executing this ... (8 Replies)
Discussion started by: lalitka
8 Replies

5. Shell Programming and Scripting

Generating random numbers

Hi, I am having trouble with generating random numbers. can this be done with awk? So I have a file that looks like this: 23 30 24 40 26 34 So column1 is start and column2 is end. I want to generate 3 random #'s between start and stop: So the output will look like this: ... (9 Replies)
Discussion started by: phil_heath
9 Replies

6. Programming

generate array of random numbers

hi guys, I am writing a c program that generates a two dimensional array to make matrix and a vector of random numbers and perform multiplication. I can't figure out whats wrong with my code. It generates a matrix of random numbers but all the numbers in the vector array is same and so is the... (2 Replies)
Discussion started by: saboture88
2 Replies

7. Shell Programming and Scripting

A way to store 2 random numbers from a for loop?

I have a for loop that cycles twice and generates 1 random number for each pass through. I would like to be able to store the two numbers to use later for arithmetics. Is there a way to do that? Right now I can only seem to use the last random number for anything. Thanks. (4 Replies)
Discussion started by: AxlVanDamme
4 Replies

8. Shell Programming and Scripting

unique random numbers awk

Hi, I have a small piece of awk code (see below) that generates random numbers. gawk -F"," 'BEGIN { srand(); for (i = 1; i <= 30; i++) printf("%s AM329_%04d\n",$0,int(36 * rand())+1) }' OFS=, AM329_hole_names.csv The code works fine and generates alphanumeric numbers like AM329_0001,... (2 Replies)
Discussion started by: theflamingmoe
2 Replies

9. Homework & Coursework Questions

Random numbers

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! Write a shell script that will take the sum of two random number? Ex: Random n1 +Random n2 = result i tries to write it but i had some dufficulties ... (3 Replies)
Discussion started by: renegade755
3 Replies
Statistics::Test::Sequence(3pm) 			User Contributed Perl Documentation			   Statistics::Test::Sequence(3pm)

NAME
Statistics::Test::Sequence - Sequence correlation test for random numbers SYNOPSIS
use Statistics::Test::Sequence; my $tester = Statistics::Test::Sequence->new(); $tester->set_data( [map {rand()} 1..1000000] ); my ($metric, $actual_freq, $expected_freq) = $tester->test(); use Data::Dumper; print "$metric "; print "Frequencies: "; print Dumper $actual_freq; print "Expected frequencies: "; print Dumper $expected_freq; DESCRIPTION
This module implements a sequence correlation test for random number generators. It shows pairwise correlation between subsequent random numbers. The algorithm is as follows: (Following Blobel. Citation in SEE ALSO section.) o Given "N+1" random numbers "u_j". o For all "j", compare "u_j" with "u_j+1". If "u_j" is greater then "u_j+1", assign a 0-Bit to the number. Otherwise, assign a 1-Bit. o Find all sequences of equal Bits. For every sequence, increment a counter for the length "k" of that sequence. (Regardless of whether it's a sequence of 1's or 0's.) o For uncorrelated random numbers, the number of sequences N(k) of length "k" in the set of "N+1" random numbers is expected to be: N(k) = 2*((k^2+3*k+1)*N - (k^3+3*k^2-k-4)) / (k+3)! METHODS
new Creates a new random number tester. set_data Sets the random numbers to operate on. First argument must be either an array reference to an array of random numbers or a code reference. If the first argument is a code reference, the second argument must be an integer "n". The code reference is called "n"-times and its return values are used as random numbers. The code reference semantics are particularily useful if you do not want to store all random numbers in memory at the same time. You can write a subroutine that, for example, generates and returns batches of 100 random numbers so no more than 101 of these numbers will be in memory at the same time. Note that if you return 100 numbers at once and pass in "n=50", you will have a sequence of 5000 random numbers. test Runs the sequence test on the data that was previously set using "set_data". Returns three items: The first is the root mean square of the bin residuals divided by the number of random numbers. It could be used as a measure for the quality of the random number generator and should be as close to zero as possible. A better metric is to compare the following two return values. The second return value is a reference to the array of frequencies. An example is in order here. Generating one million random numbers, I get: [0, 416765, 181078, 56318, 11486, 1056, 150] This means there were no sequences of length 0 (obvious), 416765 sequences of length 1, etc. There were no sequences of length 7 or greater. This example is a bad random number generator! (It's a linear congruent generator with "(a*x_i+c)%m" and "a=421", "c=64773", "m=259200", and "x_0=4711"). The third return value is similar in nature to the second in that it is a reference to an array containing sequence length frequencies. This one, however, contains the frequencies that would be expected for the given number of random numbers, were they uncorrelated. The number of bins has the maximum length of an occurring sequence as an upper limit. In the given example, you would get: (Dumped with Data::Dumper) $VAR1 = [ '0', '416666.75', '183333.1', '52777.64722222222222222222222222222222222', '11507.89523809523809523809523809523809524', '2033.72068452380952380952380952380952381', '303.1287808641975308641975308641975308642', # ... ]; Note that where I put in a "# ...", you would really see a couple more lines of numbers until the numbers go below an expected frequency of 0.1. For "n=1000000" and "k=7", you get about 39 sequences, "k=8" is expected to be found 4-5 times, etc. SUBROUTINES
expected_frequency Returns the expected frequency of the sequence length "k" in a set of "n" random numbers assuming uncorrelated random numbers. Returns this as a Math::BigFloat. Expects "k" and "n" as arguments. This subroutine is memoized. (See Memoize.) faculty Computes the factulty of the first argument recursively as a Math::BigFloat. This subroutine is memoized. (See Memoize.) SEE ALSO
Math::BigFloat, Memoize, Params::Util Random number generators: Math::Random::MT, Math::Random, Math::Random::OO, Math::TrulyRandom, "/dev/random" where available The algorithm was taken from: (German) Blobel, V., and Lohrmann, E. Statistische und numerische Methoden der Datenanalyse. Stuttgart, Leipzig: Teubner, 1998 AUTHOR
Steffen Mueller, <smueller@cpan.org> COPYRIGHT AND LICENSE
Copyright (C) 2007 by Steffen Mueller This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.6 or, at your option, any later version of Perl 5 you may have available. perl v5.10.0 2007-01-05 Statistics::Test::Sequence(3pm)
All times are GMT -4. The time now is 09:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy