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/vector_complex.rdoc
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
#
|
2
2
|
# = GSL::Vector::Complex
|
3
3
|
#
|
4
|
-
# ==
|
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
|
-
# ==
|
31
|
-
# ===
|
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:
|
76
|
+
# {GSL::Vector}[link:vector_rdoc.html]).
|
77
77
|
#
|
78
|
-
# ===
|
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
|
-
# ===
|
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
|
-
# ===
|
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
|
-
# ===
|
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
|
130
|
-
# complex data FFTs
|
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:
|
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
|
-
# ===
|
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:
|
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:
|
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
|
-
# ===
|
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
|
-
# ===
|
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
|
-
# ===
|
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
|
-
# ==
|
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:
|
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:
|
9
|
-
# 1. {Initialization}[link:
|
10
|
-
# 1. {Transform methods}[link:
|
11
|
-
# 1. {Wavelet transforms in one dimension}[link:
|
12
|
-
# 1. {Wavelet transforms in two dimension}[link:
|
13
|
-
# 1. {Examples}[link:
|
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
|
-
# ==
|
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
|
-
# ==
|
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
|
-
# ==
|
70
|
-
# ===
|
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
|
-
# ===
|
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
|
-
# ==
|
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
|
-
# {
|
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.
|
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-
|
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:
|
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:
|
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.
|
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
|
-
-
|
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:
|
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.
|
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
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
|
-
#
|