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.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +5 -0
  3. data/README +2 -2
  4. data/Rakefile +2 -3
  5. data/lib/gsl/version.rb +1 -1
  6. data/rdoc/alf.rdoc +5 -5
  7. data/rdoc/blas.rdoc +8 -8
  8. data/rdoc/bspline.rdoc +16 -16
  9. data/rdoc/changes.rdoc +4 -9
  10. data/rdoc/cheb.rdoc +24 -24
  11. data/rdoc/cholesky_complex.rdoc +21 -21
  12. data/rdoc/combi.rdoc +36 -36
  13. data/rdoc/complex.rdoc +21 -21
  14. data/rdoc/const.rdoc +46 -46
  15. data/rdoc/dht.rdoc +48 -48
  16. data/rdoc/diff.rdoc +41 -41
  17. data/rdoc/ehandling.rdoc +5 -5
  18. data/rdoc/eigen.rdoc +152 -152
  19. data/rdoc/fft.rdoc +145 -145
  20. data/rdoc/fit.rdoc +108 -108
  21. data/rdoc/function.rdoc +10 -10
  22. data/rdoc/graph.rdoc +16 -16
  23. data/rdoc/hist.rdoc +102 -102
  24. data/rdoc/hist2d.rdoc +41 -41
  25. data/rdoc/hist3d.rdoc +8 -8
  26. data/rdoc/index.rdoc +18 -21
  27. data/rdoc/integration.rdoc +109 -109
  28. data/rdoc/interp.rdoc +70 -70
  29. data/rdoc/intro.rdoc +6 -6
  30. data/rdoc/linalg.rdoc +187 -187
  31. data/rdoc/linalg_complex.rdoc +1 -1
  32. data/rdoc/math.rdoc +57 -57
  33. data/rdoc/matrix.rdoc +272 -272
  34. data/rdoc/min.rdoc +56 -56
  35. data/rdoc/monte.rdoc +21 -21
  36. data/rdoc/multimin.rdoc +94 -94
  37. data/rdoc/multiroot.rdoc +79 -79
  38. data/rdoc/narray.rdoc +31 -31
  39. data/rdoc/ndlinear.rdoc +53 -53
  40. data/rdoc/nonlinearfit.rdoc +99 -99
  41. data/rdoc/ntuple.rdoc +30 -30
  42. data/rdoc/odeiv.rdoc +87 -87
  43. data/rdoc/perm.rdoc +89 -89
  44. data/rdoc/poly.rdoc +65 -65
  45. data/rdoc/qrng.rdoc +20 -20
  46. data/rdoc/randist.rdoc +81 -81
  47. data/rdoc/ref.rdoc +56 -56
  48. data/rdoc/rng.rdoc +84 -84
  49. data/rdoc/roots.rdoc +56 -56
  50. data/rdoc/sf.rdoc +427 -427
  51. data/rdoc/siman.rdoc +18 -18
  52. data/rdoc/sort.rdoc +29 -29
  53. data/rdoc/start.rdoc +8 -8
  54. data/rdoc/stats.rdoc +51 -51
  55. data/rdoc/sum.rdoc +11 -11
  56. data/rdoc/tensor.rdoc +30 -30
  57. data/rdoc/tut.rdoc +1 -1
  58. data/rdoc/use.rdoc +37 -37
  59. data/rdoc/vector.rdoc +187 -187
  60. data/rdoc/vector_complex.rdoc +23 -23
  61. data/rdoc/wavelet.rdoc +46 -46
  62. metadata +17 -20
  63. data/rdoc/rngextra.rdoc +0 -11
  64. data/rdoc/screenshot.rdoc +0 -40
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # = GSL::Vector::Complex
3
3
  #
4
- # == {}[link:index.html"name="1] Class methods
4
+ # == Class methods
5
5
  # ---
6
6
  # * GSL::Vector::Complex.alloc(size)
7
7
  # * GSL::Vector::Complex.alloc(re, im)
@@ -24,14 +24,14 @@
24
24
  # ---
25
25
  # * GSL::Vector::Complex.calloc(n)
26
26
  #
27
- # Creates a complex vector of length <tt>n</tt> and initializes all
27
+ # Creates a complex vector of length <tt>n</tt> and initializes all
28
28
  # the elements of the vector to zero.
29
29
  #
30
- # == {}[link:index.html"name="2] Instance methods
31
- # === {}[link:index.html"name="2.1] Accessing vector elements
30
+ # == Instance methods
31
+ # === Accessing vector elements
32
32
  # ---
33
33
  # * GSL::Vector::Complex#get(args)
34
- # * GSL::Vector::Complex#[args]
34
+ # * \GSL::Vector::Complex#[args]
35
35
  #
36
36
  # Returns elements(s) of the complex vector <tt>self</tt> if <tt>args</tt> is a
37
37
  # single Fixnum, a single Array of Fixnums, or a single GSL::Permutation (or
@@ -54,7 +54,7 @@
54
54
  #
55
55
  # ---
56
56
  # * GSL::Vector::Complex#set(args, val)
57
- # * GSL::Vector::Complex#[args]=val
57
+ # * \GSL::Vector::Complex#[args]=val
58
58
  #
59
59
  # If <tt>args</tt> is empty, behaves as <tt>#set_all</tt> and <tt>val</tt> must be a
60
60
  # <tt>[re,im]</tt> <tt>Array</tt>, <tt>Float</tt>, <tt>Integer</tt>, or
@@ -73,9 +73,9 @@
73
73
  # NOTE: GSL does not provide a vector copy function that properly copies data
74
74
  # across overlapping memory regions, so watch out if assigning to part of a
75
75
  # Vector from another part of itself (see <tt>#set</tt> example of
76
- # {GSL::Vector}[link:rdoc/vector_rdoc.html]).
76
+ # {GSL::Vector}[link:vector_rdoc.html]).
77
77
  #
78
- # === {}[link:index.html"name="2.2] Initializing vector elements
78
+ # === Initializing vector elements
79
79
  # ---
80
80
  # * GSL::Vector::Complex#set_all(z)
81
81
  #
@@ -101,7 +101,7 @@
101
101
  # <tt>x</tt>. Currently, <tt>x</tt> must be a scalar, but a future Ruby GSL
102
102
  # version could accept a GSL::Vector.
103
103
  #
104
- # === {}[link:index.html"name="2.3] Vector Properties
104
+ # === Vector Properties
105
105
  # ---
106
106
  # * GSL::Vector::Complex#size
107
107
  # * GSL::Vector::Complex#len
@@ -114,7 +114,7 @@
114
114
  #
115
115
  # Return the vector stride.
116
116
  #
117
- # === {}[link:index.html"name="2.4] Iterators
117
+ # === Iterators
118
118
  # ---
119
119
  # * GSL::Vector::Complex#each
120
120
  # * GSL::Vector::Complex#each_index
@@ -124,13 +124,13 @@
124
124
  # * GSL::Vector::Complex#map!
125
125
  #
126
126
  #
127
- # === {}[link:index.html"name="2.5] Reordering Elements
127
+ # === Reordering Elements
128
128
  # <tt>GSL::Vector::Complex</tt> provides four methods for shifting the frequency
129
- # domain data between <b>FFT order</b>, shown in the table in the ((<Overview of
130
- # complex data FFTs|URL:fft.html#2.1>)), and <b>natural order</b>, which has the
131
- # most negative freqeuncy component first, the zero frequency component in the
129
+ # domain data between <b>FFT order</b>, shown in the table in the {Overview of
130
+ # complex data FFTs}[link:fft_rdoc.html#label-Overview+of+complex+data+FFTs], and <b>natural order</b>, which has
131
+ # the most negative freqeuncy component first, the zero frequency component in the
132
132
  # middle, and the most positive frequency component last. For more information
133
- # on Ruby/GSL and FFTs, see {Fast Fourier Transforms}[link:rdoc/fft_rdoc.html].
133
+ # on Ruby/GSL and FFTs, see {Fast Fourier Transforms}[link:fft_rdoc.html].
134
134
  #
135
135
  # ---
136
136
  # * GSL::Vector::Complex#fftshift
@@ -154,7 +154,7 @@
154
154
  # <tt>self</tt>. Note that <tt>#fftshift</tt> and <tt>#ifftshift</tt> are equivalent
155
155
  # for even lengths, but not for odd lengths.
156
156
  #
157
- # === {}[link:index.html"name="2.6] Arithmetic
157
+ # === Arithmetic
158
158
  # ---
159
159
  # * GSL::Vector::Complex#+(other)
160
160
  # * GSL::Vector::Complex#-(other)
@@ -168,7 +168,7 @@
168
168
  # Returns a new <tt>GSL::Vector::Complex</tt> instance containing the result of
169
169
  # the appropriate arithmetic operation on <tt>self</tt> and <tt>other</tt>. The
170
170
  # inputs are unchanged. The <tt>other</tt> parameter may be a scalar,
171
- # <tt>{GSL::Vector}[link:rdoc/vector_rdoc.html]</tt>, or <tt>GSL::Vector::Complex</tt>.
171
+ # <tt>{GSL::Vector}[link:vector_rdoc.html]</tt>, or <tt>GSL::Vector::Complex</tt>.
172
172
  #
173
173
  # ---
174
174
  # * GSL::Vector::Complex#+=(other)
@@ -182,10 +182,10 @@
182
182
  #
183
183
  # Modifies <tt>self</tt> in place to contain the result of the appropriate
184
184
  # arithmetic operation on <tt>self</tt> and <tt>other</tt>. The <tt>other</tt>
185
- # parameter may be a scalar, <tt>{GSL::Vector}[link:rdoc/vector_rdoc.html]</tt>, or
185
+ # parameter may be a scalar, <tt>{GSL::Vector}[link:vector_rdoc.html]</tt>, or
186
186
  # <tt>GSL::Vector::Complex</tt>.
187
187
  #
188
- # === {}[link:index.html"name="2.7] Reading and writing vectors
188
+ # === Reading and writing vectors
189
189
  # ---
190
190
  # * GSL::Vector::Complex#fwite(io)
191
191
  # * GSL::Vector::Complex#fread(io)
@@ -193,7 +193,7 @@
193
193
  # * GSL::Vector::Complex#fscanf(io)
194
194
  #
195
195
  #
196
- # === {}[link:index.html"name="2.8] Functions
196
+ # === Functions
197
197
  # ---
198
198
  # * GSL::Vector::Complex#conj
199
199
  # * GSL::Vector::Complex#conjugate
@@ -272,7 +272,7 @@
272
272
  # * GSL::Vector::Complex#arccoth
273
273
  #
274
274
  #
275
- # === {}[link:index.html"name="2.9] Statistics
275
+ # === Statistics
276
276
  # ---
277
277
  # * GSL::Vector::Complex#sum
278
278
  #
@@ -324,7 +324,7 @@
324
324
  # Returns the standard deviation of <tt>self</tt> around the fixed mean
325
325
  # <tt>mean</tt>. This is a real number, i.e. a <tt>Float</tt>.
326
326
  #
327
- # == {}[link:index.html"name="3] Data Conversions
327
+ # == Data Conversions
328
328
  # ---
329
329
  # * GSL::Vector#to_complex
330
330
  # * GSL::Vector#to_complex2
@@ -341,7 +341,7 @@
341
341
  # [ [1.000e+00 2.000e+00] [3.000e+00 4.000e+00] ]
342
342
  # => #<GSL::Vector::Complex:0x6d6424>
343
343
  #
344
- # {Reference index}[link:rdoc/ref_rdoc.html]
344
+ # {Reference index}[link:ref_rdoc.html]
345
345
  # {top}[link:index.html]
346
346
  #
347
347
  #
data/rdoc/wavelet.rdoc CHANGED
@@ -1,41 +1,41 @@
1
1
  #
2
2
  # = Discrete Wavelet Transforms
3
- # This chapter describes functions for performing Discrete Wavelet Transforms
4
- # (DWTs).
5
- # The library includes wavelets for real data in both one and two dimensions.
3
+ # This chapter describes functions for performing Discrete Wavelet Transforms
4
+ # (DWTs).
5
+ # The library includes wavelets for real data in both one and two dimensions.
6
6
  #
7
7
  # Contents:
8
- # 1. {Definitions}[link:rdoc/rdoc/wavelet_rdoc.html#1]
9
- # 1. {Initialization}[link:rdoc/rdoc/wavelet_rdoc.html#2]
10
- # 1. {Transform methods}[link:rdoc/rdoc/wavelet_rdoc.html#3]
11
- # 1. {Wavelet transforms in one dimension}[link:rdoc/rdoc/wavelet_rdoc.html#3.1]
12
- # 1. {Wavelet transforms in two dimension}[link:rdoc/rdoc/wavelet_rdoc.html#3.2]
13
- # 1. {Examples}[link:rdoc/rdoc/wavelet_rdoc.html#4]
8
+ # 1. {Definitions}[link:wavelet_rdoc.html#label-Definitions]
9
+ # 1. {Initialization}[link:wavelet_rdoc.html#label-Initialization]
10
+ # 1. {Transform methods}[link:wavelet_rdoc.html#label-Transform+Methods]
11
+ # 1. {Wavelet transforms in one dimension}[link:wavelet_rdoc.html#label-Wavelet+transforms+in+one+dimension]
12
+ # 1. {Wavelet transforms in two dimension}[link:wavelet_rdoc.html#label-Wavelet+transforms+in+two+dimension]
13
+ # 1. {Examples}[link:wavelet_rdoc.html#label-Example]
14
14
  #
15
- # == {}[link:index.html"name="1] Definitions
15
+ # == Definitions
16
16
  #
17
17
  # The continuous wavelet transform and its inverse are defined by the relations,
18
18
  # and,
19
- # where the basis functionspsi_{s,tau} are obtained by scaling and translation
19
+ # where the basis functionspsi_{s,tau} are obtained by scaling and translation
20
20
  # from a single function, referred to as the mother wavelet.
21
21
  #
22
- # The discrete version of the wavelet transform acts on evenly sampled data,
23
- # with fixed scaling and translation steps (s, tau). The frequency and time
24
- # axes are sampled dyadically on scales of 2^j through a level parameter j.
25
- # The resulting family of functions {psi_{j,n}} constitutes an orthonormal
22
+ # The discrete version of the wavelet transform acts on evenly sampled data,
23
+ # with fixed scaling and translation steps (s, tau). The frequency and time
24
+ # axes are sampled dyadically on scales of 2^j through a level parameter j.
25
+ # The resulting family of functions {psi_{j,n}} constitutes an orthonormal
26
26
  # basis for square-integrable signals.
27
27
  #
28
- # The discrete wavelet transform is an O(N) algorithm, and is also referred to as
28
+ # The discrete wavelet transform is an O(N) algorithm, and is also referred to as
29
29
  # the fast wavelet transform.
30
30
  #
31
- # == {}[link:index.html"name="2] Initialization
31
+ # == Initialization
32
32
  #
33
33
  # ---
34
34
  # * GSL::Wavelet.alloc(type, k)
35
35
  # * GSL::Wavelet.alloc(type, k)
36
36
  #
37
- # This function allocates and initializes a wavelet object of type <tt>type</tt>.
38
- # The parameter <tt>k</tt> selects the specific member of the wavelet family.
37
+ # This function allocates and initializes a wavelet object of type <tt>type</tt>.
38
+ # The parameter <tt>k</tt> selects the specific member of the wavelet family.
39
39
  #
40
40
  # The wavelet types are given by a constant (Fixnum) or a string as followings.
41
41
  #
@@ -46,8 +46,8 @@
46
46
  # * <tt>GSL::Wavelet::BSPLINE</tt>, or <tt>"bspline"</tt>
47
47
  # * <tt>GSL::Wavelet::BSPLINE_CENTERED</tt>, or <tt>"bspline_centered"</tt>
48
48
  #
49
- # The centered forms of the wavelets align the coefficients of the various
50
- # sub-bands on edges. Thus the resulting visualization of the coefficients
49
+ # The centered forms of the wavelets align the coefficients of the various
50
+ # sub-bands on edges. Thus the resulting visualization of the coefficients
51
51
  # of the wavelet transform in the phase plane is easier to understand.
52
52
  #
53
53
  # ---
@@ -58,16 +58,16 @@
58
58
  # ---
59
59
  # * GSL::Wavelet::Workspace.alloc(n)
60
60
  #
61
- # The GSL::Wavelet::Workspace object contains scratch space of the same size as
61
+ # The GSL::Wavelet::Workspace object contains scratch space of the same size as
62
62
  # the input data, for holding intermediate results during the transform.
63
- # This method allocates a workspace for the discrete wavelet transform.
64
- # To perform a one-dimensional transform on <tt>n</tt> elements, a workspace of
65
- # size <tt>n</tt> must be provided. For two-dimensional transforms of n-by-n
66
- # matrices it is sufficient to allocate a workspace of size <tt>n</tt>,
63
+ # This method allocates a workspace for the discrete wavelet transform.
64
+ # To perform a one-dimensional transform on <tt>n</tt> elements, a workspace of
65
+ # size <tt>n</tt> must be provided. For two-dimensional transforms of n-by-n
66
+ # matrices it is sufficient to allocate a workspace of size <tt>n</tt>,
67
67
  # since the transform operates on individual rows and columns.
68
68
  #
69
- # == {}[link:index.html"name="3] Transform Methods
70
- # === {}[link:index.html"name="3.1] Wavelet transforms in one dimension
69
+ # == Transform Methods
70
+ # === Wavelet transforms in one dimension
71
71
  #
72
72
  # ---
73
73
  # * GSL::Wavelet.transform(w, v, dir = GSL::Wavelet::FORWARD, work)
@@ -90,24 +90,24 @@
90
90
  # * GSL::Vector#wavelet_transform_forward(w, ...)
91
91
  # * GSL::Vector#wavelet_transform_inverse(w, ...)
92
92
  #
93
- # These methods compute forward and inverse discrete wavelet transforms
94
- # of the vector <tt>v</tt>. The length of the transform is restricted to powers
95
- # of two. For the transform version of the function the argument dir can be
96
- # either GSL::Wavelet::FORWARD (+1) or GSL::Wavelet::BACKWARD (-1).
93
+ # These methods compute forward and inverse discrete wavelet transforms
94
+ # of the vector <tt>v</tt>. The length of the transform is restricted to powers
95
+ # of two. For the transform version of the function the argument dir can be
96
+ # either GSL::Wavelet::FORWARD (+1) or GSL::Wavelet::BACKWARD (-1).
97
97
  # A workspace <tt>work</tt> can be omitted.
98
- #
98
+ #
99
99
  # If <tt>v</tt> is a <tt>GSL::Matrix</tt> object, methods for 2d-transforms
100
100
  # are called.
101
101
  #
102
- # For the forward transform, the elements of the original vector are replaced by
103
- # the discrete wavelet transform f_i -> w_{j,k} in a packed triangular storage
104
- # layout, where j is the index of the level j = 0 ... J-1 and k is the index of
105
- # the coefficient within each level, k = 0 ... (2^j)-1. The total number of
106
- # levels is J = log_2(n).
102
+ # For the forward transform, the elements of the original vector are replaced by
103
+ # the discrete wavelet transform f_i -> w_{j,k} in a packed triangular storage
104
+ # layout, where j is the index of the level j = 0 ... J-1 and k is the index of
105
+ # the coefficient within each level, k = 0 ... (2^j)-1. The total number of
106
+ # levels is J = log_2(n).
107
107
  #
108
108
  # These methods return a transformed data, and the input vector is not changed.
109
109
  #
110
- # === {}[link:index.html"name="3.2] Wavelet transforms in two dimension
110
+ # === Wavelet transforms in two dimension
111
111
  # ---
112
112
  # * GSL::Wavelet.transform(same as the methods for one dimensional transforms)
113
113
  # * GSL::Wavelet.transform_matrix()
@@ -162,13 +162,13 @@
162
162
  # * GSL::Wavelet2d#nstransform_inverse()
163
163
  #
164
164
  #
165
- # == {}[link:index.html"name="4] Example
165
+ # == Example
166
166
  # #!/usr/bin/env ruby
167
167
  # require("gsl")
168
168
  #
169
169
  # n = 256
170
170
  # nc = 20
171
- #
171
+ #
172
172
  # data = Vector.alloc(n)
173
173
  # data.fscanf("ecg.dat")
174
174
  #
@@ -194,7 +194,7 @@
194
194
  # i = 0
195
195
  # while (i + nc) < n
196
196
  # data2[perm[i]] = 0.0
197
- # i += 1
197
+ # i += 1
198
198
  # end
199
199
  #
200
200
  # #data3 = w.transform(data2, Wavelet::BACKWARD, work)
@@ -210,9 +210,9 @@
210
210
  #
211
211
  # #If you have GNU graph utility...
212
212
  # GSL::graph(nil, data, data3, "-T X -C -g 3")
213
- #
214
- # {prev}[link:rdoc/rdoc/fft_rdoc.html]
215
- # {next}[link:rdoc/rdoc/integration_rdoc.html]
216
213
  #
217
- # {back}[link:rdoc/rdoc/index_rdoc.html]
214
+ # {prev}[link:fft_rdoc.html]
215
+ # {next}[link:integration_rdoc.html]
216
+ #
217
+ # {back}[link:index.html]
218
218
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb-gsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0.2
4
+ version: 1.16.0.3.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshiki Tsunesada
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-07-09 00:00:00.000000000 Z
13
+ date: 2014-10-20 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: narray
@@ -30,16 +30,22 @@ dependencies:
30
30
  name: hen
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: '0.7'
33
36
  - - ">="
34
37
  - !ruby/object:Gem::Version
35
- version: '0'
38
+ version: 0.7.1
36
39
  type: :development
37
40
  prerelease: false
38
41
  version_requirements: !ruby/object:Gem::Requirement
39
42
  requirements:
43
+ - - "~>"
44
+ - !ruby/object:Gem::Version
45
+ version: '0.7'
40
46
  - - ">="
41
47
  - !ruby/object:Gem::Version
42
- version: '0'
48
+ version: 0.7.1
43
49
  - !ruby/object:Gem::Dependency
44
50
  name: rake
45
51
  requirement: !ruby/object:Gem::Requirement
@@ -138,10 +144,8 @@ extra_rdoc_files:
138
144
  - rdoc/function.rdoc
139
145
  - rdoc/multimin.rdoc
140
146
  - rdoc/ndlinear.rdoc
141
- - rdoc/rngextra.rdoc
142
147
  - rdoc/ehandling.rdoc
143
148
  - rdoc/multiroot.rdoc
144
- - rdoc/screenshot.rdoc
145
149
  - rdoc/integration.rdoc
146
150
  - rdoc/nonlinearfit.rdoc
147
151
  - rdoc/linalg_complex.rdoc
@@ -701,9 +705,7 @@ files:
701
705
  - rdoc/randist.rdoc
702
706
  - rdoc/ref.rdoc
703
707
  - rdoc/rng.rdoc
704
- - rdoc/rngextra.rdoc
705
708
  - rdoc/roots.rdoc
706
- - rdoc/screenshot.rdoc
707
709
  - rdoc/sf.rdoc
708
710
  - rdoc/siman.rdoc
709
711
  - rdoc/sort.rdoc
@@ -763,22 +765,17 @@ metadata: {}
763
765
  post_install_message:
764
766
  rdoc_options:
765
767
  - "--title"
766
- - Ruby/GSL (v1.16.0.2)
768
+ - Ruby/GSL (v1.16.0.3.rc1)
767
769
  - "--charset"
768
770
  - UTF-8
769
771
  - "--line-numbers"
770
772
  - "--all"
771
- - "--exclude"
772
- - ext
773
- - "--exclude"
774
- - lib
775
773
  - "--main"
776
- - rdoc/index.rdoc
774
+ - index.rdoc
775
+ - "--root"
776
+ - rdoc
777
777
  require_paths:
778
778
  - lib
779
- - lib/gsl
780
- - lib/ool
781
- - ext
782
779
  required_ruby_version: !ruby/object:Gem::Requirement
783
780
  requirements:
784
781
  - - ">="
@@ -786,13 +783,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
786
783
  version: 1.8.7
787
784
  required_rubygems_version: !ruby/object:Gem::Requirement
788
785
  requirements:
789
- - - ">="
786
+ - - ">"
790
787
  - !ruby/object:Gem::Version
791
- version: '0'
788
+ version: 1.3.1
792
789
  requirements:
793
790
  - GSL (http://www.gnu.org/software/gsl/)
794
791
  rubyforge_project:
795
- rubygems_version: 2.3.0
792
+ rubygems_version: 2.4.2
796
793
  signing_key:
797
794
  specification_version: 4
798
795
  summary: Ruby interface to the GNU Scientific Library [Ruby 2.x and GSL 1.16 compatible
data/rdoc/rngextra.rdoc DELETED
@@ -1,11 +0,0 @@
1
- #
2
- # = rngextra
3
- # See {Random number generation}[link:rdoc/rng_rdoc.html].
4
- #
5
- # {prev}[link:rdoc/graph_rdoc.html]
6
- # {next}[link:rdoc/tensor_rdoc.html]
7
- #
8
- # {Reference index}[link:rdoc/ref_rdoc.html]
9
- # {top}[link:index.html]
10
- #
11
- #
data/rdoc/screenshot.rdoc DELETED
@@ -1,40 +0,0 @@
1
- #
2
- # = Ruby/GSL Screenshot
3
- #
4
- # == {}[link:index.html"name="1] Vector
5
- # {Vector}[http://rb-gsl.rubyforge.org/vector.png]
6
- #
7
- # == {}[link:index.html"name="2] Matrix
8
- # {Matrix}[http://rb-gsl.rubyforge.org/matrix.png]
9
- #
10
- # == {}[link:index.html"name="3] Special Functions
11
- # {Graph}[http://rb-gsl.rubyforge.org/sf.png]
12
- #
13
- # == {}[link:index.html"name="4] Polynomials
14
- # {Polynomial}[http://rb-gsl.rubyforge.org/poly.png]
15
- #
16
- # == {}[link:index.html"name="5] Numerical Integration
17
- # {Integration}[http://rb-gsl.rubyforge.org/integ.png]
18
- #
19
- # == {}[link:index.html"name="6] Random numbers, PDFs, Histograms
20
- # {Random}[http://rb-gsl.rubyforge.org/rng.png]
21
- #
22
- # == {}[link:index.html"name="7] Wavelet Transforms
23
- # {ODE}[http://rb-gsl.rubyforge.org/dwt.png]
24
- #
25
- # == {}[link:index.html"name="8] ODE
26
- # {ODE}[http://rb-gsl.rubyforge.org/odeiv.png]
27
- #
28
- # == {}[link:index.html"name="9] Chebyshev Approximations
29
- # {Chebyshev}[http://rb-gsl.rubyforge.org/cheb.png]
30
- #
31
- # == {}[link:index.html"name="10] Root Finding
32
- # {Root}[http://rb-gsl.rubyforge.org/root.png]
33
- #
34
- # == {}[link:index.html"name="11] Minimization
35
- # {Min}[http://rb-gsl.rubyforge.org/min.png]
36
- #
37
- # == {}[link:index.html"name="12] Nonlinear Fitting
38
- # {Fit}[http://rb-gsl.rubyforge.org/fit.png]
39
- #
40
- #