RAND(2) System Calls Manual RAND(2)NAME
rand, lrand, frand, nrand, lnrand, srand - random number generator
SYNOPSIS
#include <u.h>
#include <libc.h>
int rand(void)
long lrand(void)
double frand(void)
int nrand(int val)
long lnrand(long val)
void srand(long seed)
DESCRIPTION
Rand returns a uniform pseudo-random number x, 0<=x<215.
Lrand returns a uniform long x, 0<=x<231.
Frand returns a uniform double x, 0.0<=x<1.0, This function calls lrand twice to generate a number with as many as 62 significant bits of
mantissa.
Nrand returns a uniform integer x, 0<=x<val. Lnrand is the same, but returns a long.
The algorithm is additive feedback with:
x[n] = (x[n-273] + x[n-607]) mod 2^31
giving a period of 2^30 x (2^607 - 1).
The generators are initialized by calling srand with whatever you like as argument. To get a different starting value each time,
srand(time(0))
will work as long as it is not called more often than once per second. Calling
srand(1)
will initialize the generators to their starting state.
Alef
There is no rand in Alef.
SOURCE
/sys/src/libc/port/rand.c
RAND(2)
Check Out this Related Man Page
RAND(3) BSD Library Functions Manual RAND(3)NAME
rand, rand_r, srand, sranddev -- bad random number generator
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <stdlib.h>
int
rand(void);
int
rand_r(unsigned *seed);
void
srand(unsigned seed);
void
sranddev(void);
DESCRIPTION
These interfaces are obsoleted by random(3).
The rand() function computes a sequence of pseudo-random integers in the range of 0 to RAND_MAX (as defined by the header file <stdlib.h>).
The srand() function sets its argument seed as the seed for a new sequence of pseudo-random numbers to be returned by rand(). These
sequences are repeatable by calling srand() with the same seed value.
If no seed value is provided, the functions are automatically seeded with a value of 1.
The sranddev() function initializes a seed, using the random(4) random number device which returns good random numbers, suitable for crypto-
graphic use.
The rand_r() function provides the same functionality as rand(). A pointer to the context value seed must be supplied by the caller.
SEE ALSO random(3), random(4)STANDARDS
The rand() and srand() functions conform to ISO/IEC 9899:1990 (``ISO C90'').
The rand_r() function is as proposed in the POSIX.4a Draft #6 document.
BSD May 25, 1999 BSD
Hi folks
I'm coding on Ubuntu 9.04 standard shell.
I'm writing a script that needs to generate a random number at some point of its execution.
When I do
echo $RANDOMas a command inside shell, I clearly get some randomly generated number
However when I do
i=`$RANDOM`
echo $ior even... (14 Replies)
Hi,
Following is the trimmed down version of the code I'm using to generate a set of random numbers using erand48
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main()
{
unsigned short xsubi;
xsubi=10;
double r;
int x;
int i=0,... (14 Replies)
Hi I'm trying to remove blank spaces in expressions and function calls..
Consider the following example
printf ("Hello");
a = a + b;
I'm trying to eliminate space in between the function name and the opening brace. And also eliminate space between operators and operands..
That is, I'm... (19 Replies)
Hi, im trying to make a shell script that basically runs a random shell script form a list of shell scripts i specify. Im not very good at writing shell scripts, and am new to linux.
Thanks in advance :) (15 Replies)
Hi,
Is there a tool somewhat parallel to rev, but which randomizes instead of reverses?
I've tried rl, but I can only get it to randomize words.
I was hoping for something like this
echo "hello" | ran
leolh
less simpler solutions are also welcome.
Sorry if the question is... (21 Replies)
Hello,
This is my code:
nb_lignes=`wc -l $1 | cut -d " " -f1`
for i in $(seq $nb_lignes)
do
m=`head $1 -n $i | tail -1`
//command
done
Please how can i change it to get Get 20% of lines in File randomly to apply "command" on each line ? 20% or 40% or 60 % (it's a parameter)
Thank you. (15 Replies)
I have two files containing hundreds of different sequences with the same Identifiers (ID-001, ID-002, etc.,), something like this:
Infile1:
ID-001 ATGGGAGCGGGGGCGTCTGCCTTGAGGGGAGAGAAGCTAGATACA
ID-002 ATGGGAGCGGGGGCGTCTGTTTTGAGGGGAGAGAAGCTAGATACA
ID-003... (18 Replies)
Hi,
I've been attempting to create a script that downloads web pages at random intervals to mimic typical user usage. However I'm struggling to link $url to the URL list and thus wget complains of a missing URL. Any ideas?
Thanks
#!/bin/sh
#URL List
url1="http://www.bbc.co.uk"... (14 Replies)
Hello,
I have a column which have 7200 numbers and I am deciding to pick up 1440 numbers randomly without any reputation? Could any one let me know which script in unix will be work for my case?
Regards
Sajjad (17 Replies)
Hi,
I am in a terrible emergency. I have multiple cdr files with line count >6000.
I need to append |0| | | | | | | |random| to end of each line. The random number should never repeat.
Please help with a shell script to process all cdr's in a directory with above requirement. (23 Replies)
Hi there,
first of all this is not homework...this is a new type of exercise for practicing vocabulary with my students.
I have a file consisting of two columns, separated by a tab, each line consisting of a word and its definition, separated by a line break.
What i need is to replace a... (15 Replies)
So I started with following the example on the omnios page for bhyve (sorry, I can't provide the link because I'm a post shy of the 5 to give a URL):
And found that in the end I was able to create a running bhyve zone, but accessing it via zlogin results in a blank console. I've tried Debian 9... (14 Replies)
Hello. I am installing Kali Linux on a laptop with no monitor. The installation goes fine through the external monitor and I can see the GRUB menu on boot, but once it comes time to log in it acts like my non existant laptop screen is my main monitor to type my login info on while my external is... (14 Replies)