rb-gsl 1.16.0.2 → 1.16.0.3.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ChangeLog +5 -0
- data/README +2 -2
- data/Rakefile +2 -3
- data/lib/gsl/version.rb +1 -1
- data/rdoc/alf.rdoc +5 -5
- data/rdoc/blas.rdoc +8 -8
- data/rdoc/bspline.rdoc +16 -16
- data/rdoc/changes.rdoc +4 -9
- data/rdoc/cheb.rdoc +24 -24
- data/rdoc/cholesky_complex.rdoc +21 -21
- data/rdoc/combi.rdoc +36 -36
- data/rdoc/complex.rdoc +21 -21
- data/rdoc/const.rdoc +46 -46
- data/rdoc/dht.rdoc +48 -48
- data/rdoc/diff.rdoc +41 -41
- data/rdoc/ehandling.rdoc +5 -5
- data/rdoc/eigen.rdoc +152 -152
- data/rdoc/fft.rdoc +145 -145
- data/rdoc/fit.rdoc +108 -108
- data/rdoc/function.rdoc +10 -10
- data/rdoc/graph.rdoc +16 -16
- data/rdoc/hist.rdoc +102 -102
- data/rdoc/hist2d.rdoc +41 -41
- data/rdoc/hist3d.rdoc +8 -8
- data/rdoc/index.rdoc +18 -21
- data/rdoc/integration.rdoc +109 -109
- data/rdoc/interp.rdoc +70 -70
- data/rdoc/intro.rdoc +6 -6
- data/rdoc/linalg.rdoc +187 -187
- data/rdoc/linalg_complex.rdoc +1 -1
- data/rdoc/math.rdoc +57 -57
- data/rdoc/matrix.rdoc +272 -272
- data/rdoc/min.rdoc +56 -56
- data/rdoc/monte.rdoc +21 -21
- data/rdoc/multimin.rdoc +94 -94
- data/rdoc/multiroot.rdoc +79 -79
- data/rdoc/narray.rdoc +31 -31
- data/rdoc/ndlinear.rdoc +53 -53
- data/rdoc/nonlinearfit.rdoc +99 -99
- data/rdoc/ntuple.rdoc +30 -30
- data/rdoc/odeiv.rdoc +87 -87
- data/rdoc/perm.rdoc +89 -89
- data/rdoc/poly.rdoc +65 -65
- data/rdoc/qrng.rdoc +20 -20
- data/rdoc/randist.rdoc +81 -81
- data/rdoc/ref.rdoc +56 -56
- data/rdoc/rng.rdoc +84 -84
- data/rdoc/roots.rdoc +56 -56
- data/rdoc/sf.rdoc +427 -427
- data/rdoc/siman.rdoc +18 -18
- data/rdoc/sort.rdoc +29 -29
- data/rdoc/start.rdoc +8 -8
- data/rdoc/stats.rdoc +51 -51
- data/rdoc/sum.rdoc +11 -11
- data/rdoc/tensor.rdoc +30 -30
- data/rdoc/tut.rdoc +1 -1
- data/rdoc/use.rdoc +37 -37
- data/rdoc/vector.rdoc +187 -187
- data/rdoc/vector_complex.rdoc +23 -23
- data/rdoc/wavelet.rdoc +46 -46
- metadata +17 -20
- data/rdoc/rngextra.rdoc +0 -11
- data/rdoc/screenshot.rdoc +0 -40
data/rdoc/qrng.rdoc
CHANGED
@@ -2,37 +2,37 @@
|
|
2
2
|
# = Quasi-Random Sequences
|
3
3
|
#
|
4
4
|
# This chapter describes the quasi-random sequence generator <tt>GSL::QRng</tt>
|
5
|
-
# of arbitrary dimensions. A quasi-random sequence progressively covers
|
6
|
-
# a d-dimensional space with a set of points that are uniformly distributed.
|
5
|
+
# of arbitrary dimensions. A quasi-random sequence progressively covers
|
6
|
+
# a d-dimensional space with a set of points that are uniformly distributed.
|
7
7
|
# Quasi-random sequences are also known as low-discrepancy sequences.
|
8
|
-
# The quasi-random sequence generators use an interface that is similar
|
8
|
+
# The quasi-random sequence generators use an interface that is similar
|
9
9
|
# to the interface for random number generators.
|
10
10
|
#
|
11
11
|
# Contents:
|
12
|
-
# 1. {Quasi-random number generator initialization}[link:
|
13
|
-
# 1. {Sampling from a quasi-random number generator}[link:
|
14
|
-
# 1. {Auxiliary quasi-random number generator functions}[link:
|
15
|
-
# 1. {Saving and resorting quasi-random number generator state}[link:
|
16
|
-
# 1. {Quasi-random number generator algorithms}[link:
|
12
|
+
# 1. {Quasi-random number generator initialization}[link:qrng_rdoc.html#label-Quasi-random+number+generator+initialization]
|
13
|
+
# 1. {Sampling from a quasi-random number generator}[link:qrng_rdoc.html#label-Sampling+from+a+quasi-random+number+generator]
|
14
|
+
# 1. {Auxiliary quasi-random number generator functions}[link:qrng_rdoc.html#label-Auxiliary+quasi-random+number+generator+functions]
|
15
|
+
# 1. {Saving and resorting quasi-random number generator state}[link:qrng_rdoc.html#label-Saving+and+resorting+quasi-random+number+generator+state]
|
16
|
+
# 1. {Quasi-random number generator algorithms}[link:qrng_rdoc.html#label-Quasi-random+number+generator+algorithms]
|
17
17
|
#
|
18
|
-
# ==
|
18
|
+
# == Quasi-random number generator initialization
|
19
19
|
#
|
20
20
|
# ---
|
21
21
|
# * GSL::QRng.alloc(T, d)
|
22
22
|
#
|
23
|
-
# This returns a GSL::QRng object, a quasi-random sequence generator of type <tt>T</tt> and dimension <tt>d</tt>.
|
23
|
+
# This returns a GSL::QRng object, a quasi-random sequence generator of type <tt>T</tt> and dimension <tt>d</tt>.
|
24
24
|
#
|
25
25
|
# ---
|
26
26
|
# * GSL::QRng::init
|
27
27
|
#
|
28
|
-
# This reinitializes the generator to its starting point.
|
28
|
+
# This reinitializes the generator to its starting point.
|
29
29
|
#
|
30
|
-
# ==
|
30
|
+
# == Sampling from a quasi-random number generator
|
31
31
|
#
|
32
32
|
# ---
|
33
33
|
# * GSL::QRng::get(x)
|
34
34
|
#
|
35
|
-
# This calculate the next point <tt>x</tt> from the sequence generator. Here <tt>x</tt> is an instance of the {GSL::Vector}[link:
|
35
|
+
# This calculate the next point <tt>x</tt> from the sequence generator. Here <tt>x</tt> is an instance of the {GSL::Vector}[link:vector_rdoc.html] class. The space available for <tt>x</tt> must match the dimension of the generator. The point <tt>x</tt> will lie in the range 0 < x_i < 1 for each x_i.
|
36
36
|
#
|
37
37
|
# This is used as
|
38
38
|
# q = QRng.alloc(QRng::SOBOL, dim)
|
@@ -42,7 +42,7 @@
|
|
42
42
|
# printf("%.5f %.5f\n", v[0], v[1])
|
43
43
|
# end
|
44
44
|
#
|
45
|
-
# ==
|
45
|
+
# == Auxiliary quasi-random number generator functions
|
46
46
|
#
|
47
47
|
# ---
|
48
48
|
# * GSL::QRng::name
|
@@ -53,14 +53,14 @@
|
|
53
53
|
# * GSL::QRng::size
|
54
54
|
#
|
55
55
|
#
|
56
|
-
# ==
|
56
|
+
# == Saving and resorting quasi-random number generator state
|
57
57
|
# ---
|
58
58
|
# * GSL::QRng::clone
|
59
59
|
# * GSL::QRng::duplicate
|
60
60
|
#
|
61
61
|
# Return a newly created generator which is an exact copy of the generator <tt>self</tt>.
|
62
|
-
# ==
|
63
|
-
# In creating a generator by the method <tt>GSL::QRng.alloc(T, d)</tt>,
|
62
|
+
# == Quasi-random number generator algorithms
|
63
|
+
# In creating a generator by the method <tt>GSL::QRng.alloc(T, d)</tt>,
|
64
64
|
# the algorithm type <tt>T</tt> is given by a String or a Fixnum constant.
|
65
65
|
# The following quasi-random sequence algorithms are available,
|
66
66
|
#
|
@@ -81,10 +81,10 @@
|
|
81
81
|
#
|
82
82
|
# (GSL-1.11 or later) These generators use the Halton and reverse Halton sequences described in J.H. Halton, Numerische Mathematik 2, 84-90 (1960) and B. Vandewoestyne and R. Cools Computational and Applied Mathematics 189, 1&2, 341-361 (2006). They are valid up to 1229 dimensions.
|
83
83
|
#
|
84
|
-
# {prev}[link:
|
85
|
-
# {next}[link:
|
84
|
+
# {prev}[link:rng_rdoc.html]
|
85
|
+
# {next}[link:randist_rdoc.html]
|
86
86
|
#
|
87
|
-
# {Reference index}[link:
|
87
|
+
# {Reference index}[link:ref_rdoc.html]
|
88
88
|
# {top}[link:index.html]
|
89
89
|
#
|
90
90
|
#
|
data/rdoc/randist.rdoc
CHANGED
@@ -1,79 +1,79 @@
|
|
1
1
|
#
|
2
2
|
# = Random Number Distributions
|
3
|
-
# This chapter describes functions for generating random variates and computing
|
4
|
-
# their probability distributions. Samples from the distributions described
|
5
|
-
# in this chapter can be obtained using any of the random number generators
|
6
|
-
# in the library as an underlying source of randomness.
|
3
|
+
# This chapter describes functions for generating random variates and computing
|
4
|
+
# their probability distributions. Samples from the distributions described
|
5
|
+
# in this chapter can be obtained using any of the random number generators
|
6
|
+
# in the library as an underlying source of randomness.
|
7
7
|
#
|
8
|
-
# In the simplest cases a non-uniform distribution can be obtained analytically
|
9
|
-
# from the uniform distribution of a random number generator by applying an
|
8
|
+
# In the simplest cases a non-uniform distribution can be obtained analytically
|
9
|
+
# from the uniform distribution of a random number generator by applying an
|
10
10
|
# appropriate transformation. This method uses one call to the random number
|
11
|
-
# generator. More complicated distributions are created by the
|
11
|
+
# generator. More complicated distributions are created by the
|
12
12
|
# acceptance-rejection method, which compares the desired distribution against
|
13
|
-
# a distribution which is similar and known analytically. This usually requires
|
14
|
-
# several samples from the generator.
|
13
|
+
# a distribution which is similar and known analytically. This usually requires
|
14
|
+
# several samples from the generator.
|
15
15
|
#
|
16
|
-
# The library also provides cumulative distribution functions and inverse
|
17
|
-
# cumulative distribution functions, sometimes referred to as quantile
|
18
|
-
# functions. The cumulative distribution functions and their inverses are
|
19
|
-
# computed separately for the upper and lower tails of the distribution,
|
20
|
-
# allowing full accuracy to be retained for small results.
|
16
|
+
# The library also provides cumulative distribution functions and inverse
|
17
|
+
# cumulative distribution functions, sometimes referred to as quantile
|
18
|
+
# functions. The cumulative distribution functions and their inverses are
|
19
|
+
# computed separately for the upper and lower tails of the distribution,
|
20
|
+
# allowing full accuracy to be retained for small results.
|
21
21
|
#
|
22
22
|
# Contents:
|
23
|
-
# 1. {Introduction}[link:
|
24
|
-
# 1. {The Gaussian Distribution}[link:
|
25
|
-
# 1. {The Gaussian Tail Distribution}[link:
|
23
|
+
# 1. {Introduction}[link:randist_rdoc.html#label-Introduction]
|
24
|
+
# 1. {The Gaussian Distribution}[link:randist_rdoc.html#label-The+Gaussian+Distribution]
|
25
|
+
# 1. {The Gaussian Tail Distribution}[link:randist_rdoc.html#label-The+Gaussian+Tail+Distribution]
|
26
26
|
# ...
|
27
|
-
# and more, see {the GSL reference}[
|
28
|
-
# 1. {Shuffling and Sampling}[link:
|
27
|
+
# and more, see {the GSL reference}[https://gnu.org/software/gsl/manual/]
|
28
|
+
# 1. {Shuffling and Sampling}[link:randist_rdoc.html#label-Shuffling+and+Sampling]
|
29
29
|
#
|
30
|
-
# ==
|
31
|
-
# Continuous random number distributions are defined by a probability density
|
32
|
-
# function, p(x), such that the probability of x occurring in the
|
33
|
-
# infinitesimal range x to x+dx is p dx.
|
30
|
+
# == Introduction
|
31
|
+
# Continuous random number distributions are defined by a probability density
|
32
|
+
# function, p(x), such that the probability of x occurring in the
|
33
|
+
# infinitesimal range x to x+dx is p dx.
|
34
34
|
#
|
35
|
-
# The cumulative distribution function for the lower tail P(x) is defined by the
|
36
|
-
# integral, and gives the probability of a variate taking a value less than x.
|
35
|
+
# The cumulative distribution function for the lower tail P(x) is defined by the
|
36
|
+
# integral, and gives the probability of a variate taking a value less than x.
|
37
37
|
#
|
38
|
-
# The cumulative distribution function for the upper tail Q(x) is defined by the
|
39
|
-
# integral, and gives the probability of a variate taking a value greater than
|
40
|
-
# x.
|
38
|
+
# The cumulative distribution function for the upper tail Q(x) is defined by the
|
39
|
+
# integral, and gives the probability of a variate taking a value greater than
|
40
|
+
# x.
|
41
41
|
#
|
42
|
-
# The upper and lower cumulative distribution functions are related
|
43
|
-
# by P(x) + Q(x) = 1 and satisfy 0 <= P(x) <= 1, 0 <= Q(x) <= 1.
|
42
|
+
# The upper and lower cumulative distribution functions are related
|
43
|
+
# by P(x) + Q(x) = 1 and satisfy 0 <= P(x) <= 1, 0 <= Q(x) <= 1.
|
44
44
|
#
|
45
|
-
# The inverse cumulative distributions, x=P^{-1}(P) and x=Q^{-1}(Q) give the
|
46
|
-
# values of x which correspond to a specific value of P or Q. They can be used
|
47
|
-
# to find confidence limits from probability values.
|
45
|
+
# The inverse cumulative distributions, x=P^{-1}(P) and x=Q^{-1}(Q) give the
|
46
|
+
# values of x which correspond to a specific value of P or Q. They can be used
|
47
|
+
# to find confidence limits from probability values.
|
48
48
|
#
|
49
|
-
# For discrete distributions the probability of sampling the integer value k is
|
50
|
-
# given by p(k), where \sum_k p(k) = 1. The cumulative distribution for the
|
51
|
-
# lower tail P(k) of a discrete distribution is defined as, where the sum is
|
52
|
-
# over the allowed range of the distribution less than or equal to k.
|
49
|
+
# For discrete distributions the probability of sampling the integer value k is
|
50
|
+
# given by p(k), where \sum_k p(k) = 1. The cumulative distribution for the
|
51
|
+
# lower tail P(k) of a discrete distribution is defined as, where the sum is
|
52
|
+
# over the allowed range of the distribution less than or equal to k.
|
53
53
|
#
|
54
54
|
# The cumulative distribution for the upper tail of a discrete distribution Q(k)
|
55
|
-
# is defined as giving the sum of probabilities for all values greater than k.
|
56
|
-
# These two definitions satisfy the identity P(k)+Q(k)=1.
|
55
|
+
# is defined as giving the sum of probabilities for all values greater than k.
|
56
|
+
# These two definitions satisfy the identity P(k)+Q(k)=1.
|
57
57
|
#
|
58
|
-
# If the range of the distribution is 1 to n inclusive then P(n)=1, Q(n)=0
|
59
|
-
# while P(1) = p(1), Q(1)=1-p(1).
|
58
|
+
# If the range of the distribution is 1 to n inclusive then P(n)=1, Q(n)=0
|
59
|
+
# while P(1) = p(1), Q(1)=1-p(1).
|
60
60
|
#
|
61
61
|
#
|
62
62
|
#
|
63
|
-
# ==
|
63
|
+
# == The Gaussian Distribution
|
64
64
|
# ---
|
65
65
|
# * GSL::Rng#gaussian(sigma = 1)
|
66
66
|
# * GSL::Ran::gaussian(rng, sigma = 1)
|
67
67
|
# * GSL::Rng#ugaussian
|
68
68
|
# * GSL::Ran::ugaussian
|
69
69
|
#
|
70
|
-
# These return a Gaussian random variate, with mean zero and standard
|
71
|
-
# deviation <tt>sigma</tt>.
|
70
|
+
# These return a Gaussian random variate, with mean zero and standard
|
71
|
+
# deviation <tt>sigma</tt>.
|
72
72
|
#
|
73
73
|
# ---
|
74
74
|
# * GSL::Ran::gaussian_pdf(x, sigma = 1)
|
75
75
|
#
|
76
|
-
# Computes the probability density p(x) at <tt>x</tt> for a Gaussian distribution
|
76
|
+
# Computes the probability density p(x) at <tt>x</tt> for a Gaussian distribution
|
77
77
|
# with standard deviation <tt>sigma</tt>.
|
78
78
|
#
|
79
79
|
# ---
|
@@ -92,57 +92,57 @@
|
|
92
92
|
# * GSL::Cdf::ugaussian_Pinv(P)
|
93
93
|
# * GSL::Cdf::ugaussian_Qinv(Q)
|
94
94
|
#
|
95
|
-
# These methods compute the cumulative distribution functions P(x), Q(x)
|
96
|
-
# and their inverses for the Gaussian distribution with standard
|
95
|
+
# These methods compute the cumulative distribution functions P(x), Q(x)
|
96
|
+
# and their inverses for the Gaussian distribution with standard
|
97
97
|
# deviation <tt>sigma</tt>.
|
98
98
|
#
|
99
|
-
# ==
|
99
|
+
# == The Gaussian Tail Distribution
|
100
100
|
# ---
|
101
101
|
# * GSL::Rng#gaussian_tail(a, sigma = 1)
|
102
102
|
# * GSL::Ran#gaussian_tail(rng, a, sigma = 1)
|
103
103
|
# * GSL::Rng#ugaussian_tail(a)
|
104
104
|
# * GSL::Ran#ugaussian_tail(rng)
|
105
105
|
#
|
106
|
-
# These methods provide random variates from the upper tail of a Gaussian
|
107
|
-
# distribution with standard deviation <tt>sigma</tt>.
|
106
|
+
# These methods provide random variates from the upper tail of a Gaussian
|
107
|
+
# distribution with standard deviation <tt>sigma</tt>.
|
108
108
|
# The values returned are larger than the lower limit <tt>a</tt>, which must be positive.
|
109
109
|
#
|
110
110
|
# ---
|
111
111
|
# * GSL::Ran::gaussian_tail_pdf(x, a, sigma = 1)
|
112
112
|
# * GSL::Ran::ugaussian_tail_pdf(x, a)
|
113
113
|
#
|
114
|
-
# These methods compute the probability density p(x) at <tt>x</tt> for a Gaussian
|
115
|
-
# tail distribution with standard deviation <tt>sigma</tt>
|
114
|
+
# These methods compute the probability density p(x) at <tt>x</tt> for a Gaussian
|
115
|
+
# tail distribution with standard deviation <tt>sigma</tt>
|
116
116
|
# and lower limit <tt>a</tt>.
|
117
117
|
#
|
118
|
-
# ==
|
118
|
+
# == The Bivariate Gaussian Distribution
|
119
119
|
# ---
|
120
120
|
# * GSL::Rng#bivariate_gaussian(sigma_x, sigma_y, rho)
|
121
121
|
# * GSL::Ran::bivariate_gaussian(rng, sigma_x, sigma_y, rho)
|
122
122
|
#
|
123
|
-
# These methods generate a pair of correlated gaussian variates,
|
124
|
-
# with mean zero, correlation coefficient <tt>rho</tt> and standard deviations
|
123
|
+
# These methods generate a pair of correlated gaussian variates,
|
124
|
+
# with mean zero, correlation coefficient <tt>rho</tt> and standard deviations
|
125
125
|
# <tt>sigma_x</tt> and <tt>sigma_y</tt> in the x and y directions.
|
126
126
|
#
|
127
127
|
# ---
|
128
128
|
# * GSL::Ran::bivariate_gaussian_pdf(x, y, sigma_x, sigma_y, rho)
|
129
129
|
#
|
130
|
-
# This method computes the probability density p(x,y) at <tt>(x,y)</tt>
|
131
|
-
# for a bivariate gaussian distribution with standard deviations
|
130
|
+
# This method computes the probability density p(x,y) at <tt>(x,y)</tt>
|
131
|
+
# for a bivariate gaussian distribution with standard deviations
|
132
132
|
# <tt>sigma_x, sigma_y</tt> and correlation coefficient <tt>rho</tt>.
|
133
133
|
#
|
134
|
-
# ==
|
134
|
+
# == The Exponential Distribution
|
135
135
|
# ---
|
136
136
|
# * GSL::Rng#exponential(mu)
|
137
137
|
# * GSL::Ran::exponential(rng, mu)
|
138
138
|
#
|
139
|
-
# These methods return a random variate from the exponential
|
139
|
+
# These methods return a random variate from the exponential
|
140
140
|
# distribution with mean <tt>mu</tt>.
|
141
141
|
#
|
142
142
|
# ---
|
143
143
|
# * GSL::Ran::exponential_pdf(x, mu)
|
144
144
|
#
|
145
|
-
# This method computes the probability density p(x) at <tt>x</tt>
|
145
|
+
# This method computes the probability density p(x) at <tt>x</tt>
|
146
146
|
# for an exponential distribution with mean <tt>mu</tt>.
|
147
147
|
#
|
148
148
|
# ---
|
@@ -151,21 +151,21 @@
|
|
151
151
|
# * GSL::Cdf::exponential_Pinv(P, mu)
|
152
152
|
# * GSL::Cdf::exponential_Qinv(Q, mu)
|
153
153
|
#
|
154
|
-
# These methods compute the cumulative distribution functions P(x), Q(x)
|
154
|
+
# These methods compute the cumulative distribution functions P(x), Q(x)
|
155
155
|
# and their inverses for the exponential distribution with mean <tt>mu</tt>.
|
156
156
|
#
|
157
|
-
# ==
|
157
|
+
# == The Laplace Distribution
|
158
158
|
# ---
|
159
159
|
# * GSL::Rng#laplace(a)
|
160
160
|
# * GSL::Ran::laplace(rng, a)
|
161
161
|
#
|
162
|
-
# These methods return a random variate from the Laplace distribution
|
162
|
+
# These methods return a random variate from the Laplace distribution
|
163
163
|
# with width <tt>a</tt>.
|
164
164
|
#
|
165
165
|
# ---
|
166
166
|
# * GSL::Ran::laplace_pdf(x, a)
|
167
167
|
#
|
168
|
-
# This method computes the probability density p(x) at <tt>x</tt>
|
168
|
+
# This method computes the probability density p(x) at <tt>x</tt>
|
169
169
|
# for a Laplace distribution with width <tt>a</tt>.
|
170
170
|
#
|
171
171
|
# ---
|
@@ -174,7 +174,7 @@
|
|
174
174
|
# * GSL::Cdf::laplace_Pinv(P, a)
|
175
175
|
# * GSL::Cdf::laplace_Qinv(Q, a)
|
176
176
|
#
|
177
|
-
# These methods compute the cumulative distribution functions P(x), Q(x)
|
177
|
+
# These methods compute the cumulative distribution functions P(x), Q(x)
|
178
178
|
# and their inverses for the Laplace distribution with width <tt>a</tt>.
|
179
179
|
#
|
180
180
|
# ---
|
@@ -198,36 +198,36 @@
|
|
198
198
|
#
|
199
199
|
# ...
|
200
200
|
#
|
201
|
-
# and more, see {the GSL reference}[
|
201
|
+
# and more, see {the GSL reference}[https://gnu.org/software/gsl/manual/gsl-ref_19.html#SEC286].
|
202
202
|
#
|
203
|
-
# ==
|
203
|
+
# == Shuffling and Sampling
|
204
204
|
# ---
|
205
205
|
# * GSL::Rng#shuffle(v, n)
|
206
206
|
#
|
207
|
-
# This randomly shuffles the order of <tt>n</tt> objects,
|
208
|
-
# stored in the {GSL::Vector}[link:
|
207
|
+
# This randomly shuffles the order of <tt>n</tt> objects,
|
208
|
+
# stored in the {GSL::Vector}[link:vector_rdoc.html] object <tt>v</tt>.
|
209
209
|
# ---
|
210
210
|
# * GSL::Rng#choose(v, k)
|
211
211
|
#
|
212
|
-
# This returns a {GSL::Vector}[link:
|
213
|
-
# taken randomly from the {GSL::Vector}[link:
|
212
|
+
# This returns a {GSL::Vector}[link:vector_rdoc.html] object with <tt>k</tt> objects
|
213
|
+
# taken randomly from the {GSL::Vector}[link:vector_rdoc.html] object <tt>v</tt>.
|
214
214
|
#
|
215
|
-
# The objects are sampled without replacement, thus each object can only
|
216
|
-
# appear once in the returned vector. It is required that <tt>k</tt> be less
|
217
|
-
# than or equal to the length of the vector <tt>v</tt>.
|
215
|
+
# The objects are sampled without replacement, thus each object can only
|
216
|
+
# appear once in the returned vector. It is required that <tt>k</tt> be less
|
217
|
+
# than or equal to the length of the vector <tt>v</tt>.
|
218
218
|
#
|
219
219
|
# ---
|
220
220
|
# * GSL::Rng#sample(v, k)
|
221
221
|
#
|
222
|
-
# This method is like the method <tt>choose</tt> but samples <tt>k</tt> items
|
223
|
-
# from the original vector <tt>v</tt> with replacement, so the same object
|
224
|
-
# can appear more than once in the output sequence. There is no requirement
|
222
|
+
# This method is like the method <tt>choose</tt> but samples <tt>k</tt> items
|
223
|
+
# from the original vector <tt>v</tt> with replacement, so the same object
|
224
|
+
# can appear more than once in the output sequence. There is no requirement
|
225
225
|
# that <tt>k</tt> be less than the length of <tt>v</tt>.
|
226
226
|
#
|
227
|
-
# {prev}[link:
|
228
|
-
# {next}[link:
|
227
|
+
# {prev}[link:qrng_rdoc.html]
|
228
|
+
# {next}[link:stats_rdoc.html]
|
229
229
|
#
|
230
|
-
# {Reference index}[link:
|
230
|
+
# {Reference index}[link:ref_rdoc.html]
|
231
231
|
# {top}[link:index.html]
|
232
|
-
#
|
232
|
+
#
|
233
233
|
#
|
data/rdoc/ref.rdoc
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
#
|
2
|
-
# = {Ruby/GSL Reference}[link:
|
3
|
-
# (See also {Gnu Scientific Library -- Reference Manual}[
|
2
|
+
# = {Ruby/GSL Reference}[link:ref_rdoc.html]
|
3
|
+
# (See also {Gnu Scientific Library -- Reference Manual}[https://gnu.org/software/gsl/manual/html_node/])
|
4
4
|
#
|
5
|
-
# ==
|
5
|
+
# == Front Matter
|
6
6
|
# This document describes the modules, classes and the methods of Ruby/GSL. This
|
7
7
|
# includes cut-and-paste from the
|
8
|
-
# {GNU Scientific Library -- Reference Manual}[
|
8
|
+
# {GNU Scientific Library -- Reference Manual}[https://gnu.org/software/gsl/manual/html_node/],
|
9
9
|
# and documents of the extention libraries.
|
10
10
|
#
|
11
|
-
# ===
|
11
|
+
# === Copyright of the GSL Reference
|
12
12
|
#
|
13
13
|
# Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
|
14
14
|
# 2007, 2008 The GSL Team.
|
@@ -22,72 +22,72 @@
|
|
22
22
|
# Free Documentation License". (a) The Back-Cover Text is: "You have the freedom
|
23
23
|
# to copy and modify this GNU Manual."
|
24
24
|
#
|
25
|
-
# ===
|
25
|
+
# === Copyright of this reference
|
26
26
|
#
|
27
27
|
# 2009,2010 Yoshiki Tsunesada, David MacMahon
|
28
28
|
#
|
29
29
|
# Permission is granted to copy, distribute and/or modify this document under
|
30
30
|
# the terms of the GNU Free Documentation License.
|
31
31
|
#
|
32
|
-
# ==
|
32
|
+
# == Ruby/GSL Reference
|
33
33
|
#
|
34
|
-
# 1. {Introduction}[link:
|
35
|
-
# 1. {Using Ruby/GSL}[link:
|
36
|
-
# 1. {Error Handling}[link:
|
37
|
-
# 1. {Mathematical Functions}[link:
|
38
|
-
# 1. {Complex Numbers}[link:
|
39
|
-
# 1. {Polynomials}[link:
|
40
|
-
# 1. {Special Functions}[link:
|
41
|
-
# 1. {Vectors}[link:
|
42
|
-
# 1. {Permutations}[link:
|
43
|
-
# 1. {Combinations}[link:
|
34
|
+
# 1. {Introduction}[link:intro_rdoc.html]
|
35
|
+
# 1. {Using Ruby/GSL}[link:use_rdoc.html]
|
36
|
+
# 1. {Error Handling}[link:ehandling_rdoc.html]
|
37
|
+
# 1. {Mathematical Functions}[link:math_rdoc.html]
|
38
|
+
# 1. {Complex Numbers}[link:complex_rdoc.html]
|
39
|
+
# 1. {Polynomials}[link:poly_rdoc.html]
|
40
|
+
# 1. {Special Functions}[link:sf_rdoc.html]
|
41
|
+
# 1. {Vectors}[link:vector_rdoc.html] and {Matrices}[link:matrix_rdoc.html]
|
42
|
+
# 1. {Permutations}[link:perm_rdoc.html]
|
43
|
+
# 1. {Combinations}[link:combi_rdoc.html]
|
44
44
|
--
|
45
|
-
# 1. {Multiset}[link:
|
45
|
+
# 1. {Multiset}[link:sort_rdoc.html] (GSL-1.14)
|
46
46
|
++
|
47
|
-
# 1. {Sorting}[link:
|
48
|
-
# 1. {BLAS Support}[link:
|
49
|
-
# 1. {Linear Algebra}[link:
|
50
|
-
# 1. {Eigen Systems}[link:
|
51
|
-
# 1. {Fast Fourier Transform}[link:
|
52
|
-
# 1. {Numerical Integration}[link:
|
53
|
-
# 1. {Random Number Generation}[link:
|
54
|
-
# 1. {Quasi-Random Sequences}[link:
|
55
|
-
# 1. {Random Number Distributions}[link:
|
56
|
-
# 1. {Statistics}[link:
|
57
|
-
# 1. {1d-Histograms}[link:
|
58
|
-
# 1. {N-tuples}[link:
|
59
|
-
# 1. {Monte-Carlo Integration}[link:
|
60
|
-
# 1. {Simulated Annealing}[link:
|
61
|
-
# 1. {Ordinary Differential Equations}[link:
|
62
|
-
# 1. {Interpolation}[link:
|
63
|
-
# 1. {Numerical Differentiation}[link:
|
64
|
-
# 1. {Chebyshev Approximations}[link:
|
65
|
-
# 1. {Series Acceleration}[link:
|
66
|
-
# 1. {Wavelet Transforms}[link:
|
67
|
-
# 1. {Discrete Hankel Transforms}[link:
|
68
|
-
# 1. {One dimensional Root-Finding}[link:
|
69
|
-
# 1. {One dimensional Minimization}[link:
|
70
|
-
# 1. {Multidimensional Root-Finding}[link:
|
71
|
-
# 1. {Multidimensional Minimization}[link:
|
72
|
-
# 1. {Least-Squares Fitting}[link:
|
73
|
-
# 1. {Nonlinear Least-Squares Fitting}[link:
|
74
|
-
# 1. {Basis Splines}[link:
|
75
|
-
# 1. {Physical Constants}[link:
|
76
|
-
# 1. {Graphics}[link:
|
47
|
+
# 1. {Sorting}[link:sort_rdoc.html]
|
48
|
+
# 1. {BLAS Support}[link:blas_rdoc.html]
|
49
|
+
# 1. {Linear Algebra}[link:linalg_rdoc.html]
|
50
|
+
# 1. {Eigen Systems}[link:eigen_rdoc.html]
|
51
|
+
# 1. {Fast Fourier Transform}[link:fft_rdoc.html]
|
52
|
+
# 1. {Numerical Integration}[link:integration_rdoc.html]
|
53
|
+
# 1. {Random Number Generation}[link:rng_rdoc.html]
|
54
|
+
# 1. {Quasi-Random Sequences}[link:qrng_rdoc.html]
|
55
|
+
# 1. {Random Number Distributions}[link:randist_rdoc.html]
|
56
|
+
# 1. {Statistics}[link:stats_rdoc.html]
|
57
|
+
# 1. {1d-Histograms}[link:hist_rdoc.html], {2d-Histograms}[link:hist2d_rdoc.html] and {3d-Histograms}[link:hist3d_rdoc.html]
|
58
|
+
# 1. {N-tuples}[link:ntuple_rdoc.html]
|
59
|
+
# 1. {Monte-Carlo Integration}[link:monte_rdoc.html]
|
60
|
+
# 1. {Simulated Annealing}[link:siman_rdoc.html]
|
61
|
+
# 1. {Ordinary Differential Equations}[link:odeiv_rdoc.html]
|
62
|
+
# 1. {Interpolation}[link:interp_rdoc.html]
|
63
|
+
# 1. {Numerical Differentiation}[link:diff_rdoc.html]
|
64
|
+
# 1. {Chebyshev Approximations}[link:cheb_rdoc.html]
|
65
|
+
# 1. {Series Acceleration}[link:sum_rdoc.html]
|
66
|
+
# 1. {Wavelet Transforms}[link:wavelet_rdoc.html] (GSL-1.6 feature)
|
67
|
+
# 1. {Discrete Hankel Transforms}[link:dht_rdoc.html]
|
68
|
+
# 1. {One dimensional Root-Finding}[link:roots_rdoc.html]
|
69
|
+
# 1. {One dimensional Minimization}[link:min_rdoc.html]
|
70
|
+
# 1. {Multidimensional Root-Finding}[link:multiroot_rdoc.html]
|
71
|
+
# 1. {Multidimensional Minimization}[link:multimin_rdoc.html]
|
72
|
+
# 1. {Least-Squares Fitting}[link:fit_rdoc.html]
|
73
|
+
# 1. {Nonlinear Least-Squares Fitting}[link:nonlinearfit_rdoc.html]
|
74
|
+
# 1. {Basis Splines}[link:bspline_rdoc.html]
|
75
|
+
# 1. {Physical Constants}[link:const_rdoc.html]
|
76
|
+
# 1. {Graphics}[link:graph_rdoc.html]
|
77
77
|
# 1. Supported GSL add-on packages
|
78
|
-
# 1. {rngextra}[link:
|
79
|
-
# 1. {Tensor manipulations}[link:
|
78
|
+
# 1. {rngextra}[link:rng_rdoc.html#label-Random+number+generator+initialization]
|
79
|
+
# 1. {Tensor manipulations}[link:tensor_rdoc.html]
|
80
80
|
# 1. OOL: Open Optimization library (see examples/ool/*.rb)
|
81
81
|
# 1. CQP and Bundle (see examples/multimin/cqp.rb, bundle.rb)
|
82
82
|
# 1. quartic
|
83
83
|
# 1. jacobi (see examples/jacobi/*.rb)
|
84
|
-
# 1. {NDLINEAR: multi-linear, multi-parameter least squares fitting}[link:
|
85
|
-
# 1. {ALF: associated Legendre polynomials}[link:
|
86
|
-
# 1. {NArray compatibilities}[link:
|
87
|
-
# 1. {Changes since Ruby/GSL 1.10.3}[link:
|
88
|
-
# 1. {GNU Free Documentation Licence}[
|
84
|
+
# 1. {NDLINEAR: multi-linear, multi-parameter least squares fitting}[link:ndlinear_rdoc.html]
|
85
|
+
# 1. {ALF: associated Legendre polynomials}[link:alf_rdoc.html]
|
86
|
+
# 1. {NArray compatibilities}[link:narray_rdoc.html]
|
87
|
+
# 1. {Changes since Ruby/GSL 1.10.3}[link:changes_rdoc.html]
|
88
|
+
# 1. {GNU Free Documentation Licence}[https://gnu.org/software/gsl/manual/html_node/GNU-Free-Documentation-License.html]
|
89
89
|
#
|
90
|
-
# {next}[link:
|
90
|
+
# {next}[link:intro_rdoc.html]
|
91
91
|
#
|
92
92
|
# {top}[link:index.html]
|
93
93
|
#
|