Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / doc / gsl-randist.1
1 .\" Man page contributed by Dirk Eddelbuettel <edd@debian.org>
2 .\" and released under the GNU General Public License
3 .TH GSL-RANDIST 1 "" GNU
4 .SH NAME
5 gsl-randist - generate random samples from various distributions
6 .SH SYNOPSYS
7 .B gsl-randist seed n DIST param1 param2 [..]
8 .SH DESCRIPTION
9 .B gsl-randist 
10 is a demonstration program for the GNU Scientific Library.
11 It generates n random samples from the distribution DIST using the distribution
12 parameters param1, param2, ...
13 .SH EXAMPLE
14 Here is an example.  We generate 10000 random samples from a Cauchy
15 distribution with a width of 30 and histogram them over the range -100 to
16 100, using 200 bins.
17  
18      gsl-randist 0 10000 cauchy 30 | gsl-histogram -100 100 200 > histogram.dat
19  
20 A plot of the resulting histogram will show the familiar shape of the
21 Cauchy distribution with fluctuations caused by the finite sample
22 size.
23
24      awk '{print $1, $3 ; print $2, $3}' histogram.dat | graph -T X
25
26 .SH SEE ALSO
27 .BR gsl(3) ,
28 .BR gsl-histogram(1) .
29
30 .SH AUTHOR
31 .B gsl-randist 
32 was written by James Theiler and Brian Gough.
33 Copyright 1996-2000; for copying conditions see the GNU General
34 Public Licence. 
35
36 This manual page was added by the Dirk Eddelbuettel
37 <edd@debian.org>, the Debian GNU/Linux maintainer for
38 .BR GSL .