rb-gsl 1.15.3.1 → 1.15.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHORS +2 -2
  3. data/ChangeLog +8 -0
  4. data/Rakefile +39 -96
  5. data/VERSION +1 -1
  6. data/ext/array.c +2 -2
  7. data/ext/block_source.c +1 -1
  8. data/ext/dirac.c +1 -1
  9. data/ext/eigen.c +13 -13
  10. data/ext/extconf.rb +17 -11
  11. data/ext/function.c +5 -5
  12. data/ext/gsl_narray.c +6 -6
  13. data/ext/histogram.c +7 -6
  14. data/ext/histogram2d.c +4 -4
  15. data/ext/interp.c +1 -1
  16. data/ext/linalg.c +13 -11
  17. data/ext/linalg_complex.c +8 -6
  18. data/ext/math.c +1 -1
  19. data/ext/matrix_complex.c +6 -6
  20. data/ext/matrix_source.c +10 -10
  21. data/ext/monte.c +2 -2
  22. data/ext/multimin.c +4 -4
  23. data/ext/multiroots.c +8 -8
  24. data/ext/nmf.c +6 -6
  25. data/ext/ntuple.c +4 -4
  26. data/ext/odeiv.c +2 -2
  27. data/ext/permutation.c +1 -1
  28. data/ext/poly2.c +6 -6
  29. data/ext/poly_source.c +9 -6
  30. data/ext/sf.c +31 -45
  31. data/ext/signal.c +2 -2
  32. data/ext/vector_complex.c +11 -10
  33. data/ext/vector_double.c +7 -4
  34. data/ext/vector_source.c +29 -26
  35. data/ext/wavelet.c +1 -1
  36. data/include/rb_gsl_common.h +12 -0
  37. data/include/rb_gsl_config.h +10 -1
  38. data/rdoc/blas.rdoc +4 -4
  39. data/rdoc/bspline.rdoc +8 -8
  40. data/rdoc/cheb.rdoc +9 -9
  41. data/rdoc/cholesky_complex.rdoc +1 -1
  42. data/rdoc/combi.rdoc +10 -10
  43. data/rdoc/complex.rdoc +12 -12
  44. data/rdoc/const.rdoc +21 -21
  45. data/rdoc/dht.rdoc +7 -7
  46. data/rdoc/diff.rdoc +7 -7
  47. data/rdoc/ehandling.rdoc +4 -4
  48. data/rdoc/eigen.rdoc +12 -12
  49. data/rdoc/fft.rdoc +27 -27
  50. data/rdoc/fit.rdoc +19 -19
  51. data/rdoc/function.rdoc +1 -1
  52. data/rdoc/graph.rdoc +3 -3
  53. data/rdoc/hist.rdoc +17 -17
  54. data/rdoc/hist2d.rdoc +5 -5
  55. data/rdoc/hist3d.rdoc +4 -4
  56. data/rdoc/index.rdoc +4 -4
  57. data/rdoc/integration.rdoc +17 -17
  58. data/rdoc/interp.rdoc +12 -12
  59. data/rdoc/intro.rdoc +4 -4
  60. data/rdoc/linalg.rdoc +21 -21
  61. data/rdoc/linalg_complex.rdoc +1 -1
  62. data/rdoc/math.rdoc +14 -14
  63. data/rdoc/matrix.rdoc +21 -21
  64. data/rdoc/min.rdoc +10 -10
  65. data/rdoc/monte.rdoc +4 -4
  66. data/rdoc/multimin.rdoc +13 -13
  67. data/rdoc/multiroot.rdoc +13 -13
  68. data/rdoc/narray.rdoc +10 -10
  69. data/rdoc/ndlinear.rdoc +5 -5
  70. data/rdoc/nonlinearfit.rdoc +18 -18
  71. data/rdoc/ntuple.rdoc +6 -6
  72. data/rdoc/odeiv.rdoc +13 -13
  73. data/rdoc/perm.rdoc +12 -12
  74. data/rdoc/poly.rdoc +18 -18
  75. data/rdoc/qrng.rdoc +10 -10
  76. data/rdoc/randist.rdoc +11 -11
  77. data/rdoc/ref.rdoc +50 -50
  78. data/rdoc/rng.rdoc +10 -10
  79. data/rdoc/rngextra.rdoc +5 -5
  80. data/rdoc/roots.rdoc +13 -13
  81. data/rdoc/sf.rdoc +36 -36
  82. data/rdoc/siman.rdoc +4 -4
  83. data/rdoc/sort.rdoc +7 -7
  84. data/rdoc/start.rdoc +1 -1
  85. data/rdoc/stats.rdoc +14 -14
  86. data/rdoc/sum.rdoc +5 -5
  87. data/rdoc/tensor.rdoc +4 -4
  88. data/rdoc/tut.rdoc +1 -1
  89. data/rdoc/use.rdoc +5 -5
  90. data/rdoc/vector.rdoc +29 -29
  91. data/rdoc/vector_complex.rdoc +6 -6
  92. data/rdoc/wavelet.rdoc +9 -9
  93. data/test/gsl/blas_test.rb +79 -0
  94. data/test/gsl/bspline_test.rb +63 -0
  95. data/test/gsl/cdf_test.rb +1512 -0
  96. data/test/gsl/cheb_test.rb +80 -0
  97. data/test/gsl/combination_test.rb +100 -0
  98. data/test/gsl/complex_test.rb +20 -0
  99. data/test/gsl/const_test.rb +29 -0
  100. data/test/gsl/deriv_test.rb +62 -0
  101. data/test/gsl/dht_test.rb +79 -0
  102. data/test/gsl/diff_test.rb +53 -0
  103. data/test/gsl/eigen_test.rb +563 -0
  104. data/test/gsl/err_test.rb +23 -0
  105. data/test/gsl/fit_test.rb +101 -0
  106. data/test/gsl/histo_test.rb +14 -0
  107. data/test/gsl/integration_test.rb +274 -0
  108. data/test/gsl/interp_test.rb +27 -0
  109. data/test/gsl/linalg_test.rb +463 -0
  110. data/test/gsl/matrix_nmf_test.rb +37 -0
  111. data/test/gsl/matrix_test.rb +77 -0
  112. data/test/gsl/min_test.rb +89 -0
  113. data/test/gsl/monte_test.rb +77 -0
  114. data/test/gsl/multifit_test.rb +753 -0
  115. data/test/gsl/multimin_test.rb +157 -0
  116. data/test/gsl/multiroot_test.rb +135 -0
  117. data/test/gsl/multiset_test.rb +52 -0
  118. data/test/gsl/odeiv_test.rb +275 -0
  119. data/test/gsl/poly_test.rb +338 -0
  120. data/test/gsl/qrng_test.rb +94 -0
  121. data/test/gsl/quartic_test.rb +28 -0
  122. data/test/gsl/randist_test.rb +122 -0
  123. data/test/gsl/rng_test.rb +303 -0
  124. data/test/gsl/roots_test.rb +78 -0
  125. data/test/gsl/sf_test.rb +2079 -0
  126. data/test/gsl/stats_test.rb +122 -0
  127. data/test/gsl/sum_test.rb +69 -0
  128. data/test/gsl/tensor_test.rb +396 -0
  129. data/test/gsl/vector_test.rb +223 -0
  130. data/test/gsl/wavelet_test.rb +130 -0
  131. data/test/gsl_test.rb +321 -0
  132. data/test/test_helper.rb +42 -0
  133. metadata +107 -150
  134. data/setup.rb +0 -1585
  135. data/tests/blas/amax.rb +0 -14
  136. data/tests/blas/asum.rb +0 -16
  137. data/tests/blas/axpy.rb +0 -25
  138. data/tests/blas/copy.rb +0 -23
  139. data/tests/blas/dot.rb +0 -23
  140. data/tests/bspline.rb +0 -53
  141. data/tests/cdf.rb +0 -1388
  142. data/tests/cheb.rb +0 -112
  143. data/tests/combination.rb +0 -123
  144. data/tests/complex.rb +0 -17
  145. data/tests/const.rb +0 -24
  146. data/tests/deriv.rb +0 -85
  147. data/tests/dht/dht1.rb +0 -17
  148. data/tests/dht/dht2.rb +0 -23
  149. data/tests/dht/dht3.rb +0 -23
  150. data/tests/dht/dht4.rb +0 -23
  151. data/tests/diff.rb +0 -78
  152. data/tests/eigen/eigen.rb +0 -220
  153. data/tests/eigen/gen.rb +0 -105
  154. data/tests/eigen/genherm.rb +0 -66
  155. data/tests/eigen/gensymm.rb +0 -68
  156. data/tests/eigen/nonsymm.rb +0 -53
  157. data/tests/eigen/nonsymmv.rb +0 -53
  158. data/tests/eigen/symm-herm.rb +0 -74
  159. data/tests/err.rb +0 -58
  160. data/tests/fit.rb +0 -124
  161. data/tests/gsl_test.rb +0 -118
  162. data/tests/gsl_test2.rb +0 -110
  163. data/tests/histo.rb +0 -12
  164. data/tests/integration/integration1.rb +0 -72
  165. data/tests/integration/integration2.rb +0 -71
  166. data/tests/integration/integration3.rb +0 -71
  167. data/tests/integration/integration4.rb +0 -71
  168. data/tests/interp.rb +0 -45
  169. data/tests/linalg/HH.rb +0 -64
  170. data/tests/linalg/LU.rb +0 -47
  171. data/tests/linalg/QR.rb +0 -77
  172. data/tests/linalg/SV.rb +0 -24
  173. data/tests/linalg/TDN.rb +0 -116
  174. data/tests/linalg/TDS.rb +0 -122
  175. data/tests/linalg/bidiag.rb +0 -73
  176. data/tests/linalg/cholesky.rb +0 -20
  177. data/tests/linalg/linalg.rb +0 -158
  178. data/tests/matrix/matrix_complex_test.rb +0 -36
  179. data/tests/matrix/matrix_nmf_test.rb +0 -39
  180. data/tests/matrix/matrix_test.rb +0 -48
  181. data/tests/min.rb +0 -99
  182. data/tests/monte/miser.rb +0 -31
  183. data/tests/monte/vegas.rb +0 -45
  184. data/tests/multifit/test_2dgauss.rb +0 -112
  185. data/tests/multifit/test_brown.rb +0 -90
  186. data/tests/multifit/test_enso.rb +0 -246
  187. data/tests/multifit/test_filip.rb +0 -155
  188. data/tests/multifit/test_gauss.rb +0 -97
  189. data/tests/multifit/test_longley.rb +0 -110
  190. data/tests/multifit/test_multifit.rb +0 -52
  191. data/tests/multimin.rb +0 -139
  192. data/tests/multiroot.rb +0 -131
  193. data/tests/multiset.rb +0 -52
  194. data/tests/narray/blas_dnrm2.rb +0 -20
  195. data/tests/odeiv.rb +0 -353
  196. data/tests/poly/poly.rb +0 -290
  197. data/tests/poly/special.rb +0 -65
  198. data/tests/qrng.rb +0 -131
  199. data/tests/quartic.rb +0 -29
  200. data/tests/randist.rb +0 -134
  201. data/tests/rng.rb +0 -305
  202. data/tests/roots.rb +0 -76
  203. data/tests/run-test.sh +0 -17
  204. data/tests/sf/gsl_test_sf.rb +0 -249
  205. data/tests/sf/test_airy.rb +0 -83
  206. data/tests/sf/test_bessel.rb +0 -306
  207. data/tests/sf/test_coulomb.rb +0 -17
  208. data/tests/sf/test_dilog.rb +0 -25
  209. data/tests/sf/test_gamma.rb +0 -209
  210. data/tests/sf/test_hyperg.rb +0 -356
  211. data/tests/sf/test_legendre.rb +0 -227
  212. data/tests/sf/test_mathieu.rb +0 -59
  213. data/tests/sf/test_mode.rb +0 -19
  214. data/tests/sf/test_sf.rb +0 -839
  215. data/tests/stats.rb +0 -174
  216. data/tests/stats_mt.rb +0 -16
  217. data/tests/sum.rb +0 -98
  218. data/tests/sys.rb +0 -323
  219. data/tests/tensor.rb +0 -419
  220. data/tests/vector/vector_complex_test.rb +0 -101
  221. data/tests/vector/vector_test.rb +0 -141
  222. data/tests/wavelet.rb +0 -142
@@ -42,5 +42,5 @@
42
42
  # should contain the right-hand side <tt>b</tt>,
43
43
  # which is replaced by the solution on output.
44
44
  #
45
- # {back}[link:files/rdoc/linalg_rdoc.html]
45
+ # {back}[link:rdoc/linalg_rdoc.html]
46
46
  #
@@ -1,12 +1,12 @@
1
1
  #
2
2
  # = Combinations
3
3
  # Contents:
4
- # 1. {Combination allocation}[link:files/rdoc/combi_rdoc.html#1]
5
- # 1. {Methods}[link:files/rdoc/combi_rdoc.html#2]
6
- # 1. {Accessing combination elements}[link:files/rdoc/combi_rdoc.html#2.1]
7
- # 1. {Combination properties}[link:files/rdoc/combi_rdoc.html#2.2]
8
- # 1. {Combination functions}[link:files/rdoc/combi_rdoc.html#2.3]
9
- # 1. {Reading and writing combinations}[link:files/rdoc/combi_rdoc.html#2.4]
4
+ # 1. {Combination allocation}[link:rdoc/combi_rdoc.html#1]
5
+ # 1. {Methods}[link:rdoc/combi_rdoc.html#2]
6
+ # 1. {Accessing combination elements}[link:rdoc/combi_rdoc.html#2.1]
7
+ # 1. {Combination properties}[link:rdoc/combi_rdoc.html#2.2]
8
+ # 1. {Combination functions}[link:rdoc/combi_rdoc.html#2.3]
9
+ # 1. {Reading and writing combinations}[link:rdoc/combi_rdoc.html#2.4]
10
10
  #
11
11
  # == {}[link:index.html"name="1] Combination allocation
12
12
  # ---
@@ -116,10 +116,10 @@
116
116
  # end while c.next == GSL::SUCCESS
117
117
  # end
118
118
  #
119
- # {prev}[link:files/rdoc/perm_rdoc.html]
120
- # {next}[link:files/rdoc/multiset_rdoc.html]
119
+ # {prev}[link:rdoc/perm_rdoc.html]
120
+ # {next}[link:rdoc/multiset_rdoc.html]
121
121
  #
122
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
123
- # {top}[link:files/rdoc/index_rdoc.html]
122
+ # {Reference index}[link:rdoc/ref_rdoc.html]
123
+ # {top}[link:index.html]
124
124
  #
125
125
  #
@@ -1,14 +1,14 @@
1
1
  #
2
2
  # = Complex Numbers
3
3
  # Contents:
4
- # 1. {Class methods}[link:files/rdoc/complex_rdoc.html#1]
5
- # 1. {Properties of Complex Numbers}[link:files/rdoc/complex_rdoc.html#2]
6
- # 1. {Complex Arithmetic Operators}[link:files/rdoc/complex_rdoc.html#3]
7
- # 1. {Elementary Complex Functions}[link:files/rdoc/complex_rdoc.html#4]
8
- # 1. {Complex Trigonometric Functions}[link:files/rdoc/complex_rdoc.html#5]
9
- # 1. {Inverse Complex Trigonometric Functions}[link:files/rdoc/complex_rdoc.html#6]
10
- # 1. {Complex Hyperbolic Functions}[link:files/rdoc/complex_rdoc.html#7]
11
- # 1. {Inverse Complex Hyperbolic Functions}[link:files/rdoc/complex_rdoc.html#8]
4
+ # 1. {Class methods}[link:rdoc/complex_rdoc.html#1]
5
+ # 1. {Properties of Complex Numbers}[link:rdoc/complex_rdoc.html#2]
6
+ # 1. {Complex Arithmetic Operators}[link:rdoc/complex_rdoc.html#3]
7
+ # 1. {Elementary Complex Functions}[link:rdoc/complex_rdoc.html#4]
8
+ # 1. {Complex Trigonometric Functions}[link:rdoc/complex_rdoc.html#5]
9
+ # 1. {Inverse Complex Trigonometric Functions}[link:rdoc/complex_rdoc.html#6]
10
+ # 1. {Complex Hyperbolic Functions}[link:rdoc/complex_rdoc.html#7]
11
+ # 1. {Inverse Complex Hyperbolic Functions}[link:rdoc/complex_rdoc.html#8]
12
12
  #
13
13
  # == {}[link:index.html"name="1] Class Methods
14
14
  # ---
@@ -201,10 +201,10 @@
201
201
  # * GSL::Complex#arccoth(z)
202
202
  #
203
203
  #
204
- # {prev}[link:files/rdoc/math_rdoc.html]
205
- # {next}[link:files/rdoc/poly_rdoc.html]
204
+ # {prev}[link:rdoc/math_rdoc.html]
205
+ # {next}[link:rdoc/poly_rdoc.html]
206
206
  #
207
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
208
- # {top}[link:files/rdoc/index_rdoc.html]
207
+ # {Reference index}[link:rdoc/ref_rdoc.html]
208
+ # {top}[link:index.html]
209
209
  #
210
210
  #
@@ -15,23 +15,23 @@
15
15
  # See also the {GSL reference}[http://www.gnu.org/software/gsl/manual/gsl-ref_37.html#SEC479"target="_top]
16
16
  #
17
17
  # Contents:
18
- # 1. {Fundamental Constants}[link:files/rdoc/const_rdoc.html#1]
19
- # 1. {Astronomy and Astrophysics}[link:files/rdoc/const_rdoc.html#2]
20
- # 1. {Atomic and Nuclear Physics}[link:files/rdoc/const_rdoc.html#3]
21
- # 1. {Measurement of Time}[link:files/rdoc/const_rdoc.html#4]
22
- # 1. {Imperial Units}[link:files/rdoc/const_rdoc.html#5]
23
- # 1. {Nautical Units}[link:files/rdoc/const_rdoc.html#6]
24
- # 1. {Printers Units}[link:files/rdoc/const_rdoc.html#7]
25
- # 1. {Volume}[link:files/rdoc/const_rdoc.html#8]
26
- # 1. {Mass and Weight}[link:files/rdoc/const_rdoc.html#9]
27
- # 1. {Thermal Energy and Power}[link:files/rdoc/const_rdoc.html#10]
28
- # 1. {Pressure}[link:files/rdoc/const_rdoc.html#11]
29
- # 1. {Viscosity}[link:files/rdoc/const_rdoc.html#12]
30
- # 1. {Light and Illumination}[link:files/rdoc/const_rdoc.html#13]
31
- # 1. {Radioactivity}[link:files/rdoc/const_rdoc.html#14]
32
- # 1. {Force and Energy}[link:files/rdoc/const_rdoc.html#15]
33
- # 1. {Prefixes}[link:files/rdoc/const_rdoc.html#16]
34
- # 1. {Examples}[link:files/rdoc/const_rdoc.html#17]
18
+ # 1. {Fundamental Constants}[link:rdoc/const_rdoc.html#1]
19
+ # 1. {Astronomy and Astrophysics}[link:rdoc/const_rdoc.html#2]
20
+ # 1. {Atomic and Nuclear Physics}[link:rdoc/const_rdoc.html#3]
21
+ # 1. {Measurement of Time}[link:rdoc/const_rdoc.html#4]
22
+ # 1. {Imperial Units}[link:rdoc/const_rdoc.html#5]
23
+ # 1. {Nautical Units}[link:rdoc/const_rdoc.html#6]
24
+ # 1. {Printers Units}[link:rdoc/const_rdoc.html#7]
25
+ # 1. {Volume}[link:rdoc/const_rdoc.html#8]
26
+ # 1. {Mass and Weight}[link:rdoc/const_rdoc.html#9]
27
+ # 1. {Thermal Energy and Power}[link:rdoc/const_rdoc.html#10]
28
+ # 1. {Pressure}[link:rdoc/const_rdoc.html#11]
29
+ # 1. {Viscosity}[link:rdoc/const_rdoc.html#12]
30
+ # 1. {Light and Illumination}[link:rdoc/const_rdoc.html#13]
31
+ # 1. {Radioactivity}[link:rdoc/const_rdoc.html#14]
32
+ # 1. {Force and Energy}[link:rdoc/const_rdoc.html#15]
33
+ # 1. {Prefixes}[link:rdoc/const_rdoc.html#16]
34
+ # 1. {Examples}[link:rdoc/const_rdoc.html#17]
35
35
  #
36
36
  # == {}[link:index.html"name="1] Fundamental Constants
37
37
  # ---
@@ -537,10 +537,10 @@
537
537
  # printf("minimum = %.1f minutes\n", t_min / minutes);
538
538
  # printf("maximum = %.1f minutes\n\n", t_max / minutes);
539
539
  #
540
- # {prev}[link:files/rdoc/bspline_rdoc.html]
541
- # {next}[link:files/rdoc/graph_rdoc.html]
540
+ # {prev}[link:rdoc/bspline_rdoc.html]
541
+ # {next}[link:rdoc/graph_rdoc.html]
542
542
  #
543
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
544
- # {top}[link:files/rdoc/index_rdoc.html]
543
+ # {Reference index}[link:rdoc/ref_rdoc.html]
544
+ # {top}[link:index.html]
545
545
  #
546
546
  #
@@ -3,9 +3,9 @@
3
3
  # This chapter describes functions for performing Discrete Hankel Transforms
4
4
  # (DHTs).
5
5
  #
6
- # 1. {Definitions}[link:files/rdoc/dht_rdoc.html#1]
7
- # 1. {Initialization}[link:files/rdoc/dht_rdoc.html#2]
8
- # 1. {Methods}[link:files/rdoc/dht_rdoc.html#3]
6
+ # 1. {Definitions}[link:rdoc/dht_rdoc.html#1]
7
+ # 1. {Initialization}[link:rdoc/dht_rdoc.html#2]
8
+ # 1. {Methods}[link:rdoc/dht_rdoc.html#3]
9
9
  #
10
10
  # == {}[link:index.html"name="1] Definitions
11
11
  # The discrete Hankel transform acts on a vector of sampled data, where the
@@ -113,10 +113,10 @@
113
113
  #
114
114
  # Return the (n,m)-th transform coefficient.
115
115
  #
116
- # {prev}[link:files/rdoc/sum_rdoc.html]
117
- # {next}[link:files/rdoc/roots_rdoc.html]
116
+ # {prev}[link:rdoc/sum_rdoc.html]
117
+ # {next}[link:rdoc/roots_rdoc.html]
118
118
  #
119
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
120
- # {top}[link:files/rdoc/index_rdoc.html]
119
+ # {Reference index}[link:rdoc/ref_rdoc.html]
120
+ # {top}[link:index.html]
121
121
  #
122
122
  #
@@ -5,8 +5,8 @@
5
5
  # of finite difference and to estimate the error in the derivative.
6
6
  #
7
7
  # Contentes:
8
- # 1. {Deriv methods}[link:files/rdoc/diff_rdoc.html#1]
9
- # 1. {Diff methods}[link:files/rdoc/diff_rdoc.html#2]
8
+ # 1. {Deriv methods}[link:rdoc/diff_rdoc.html#1]
9
+ # 1. {Diff methods}[link:rdoc/diff_rdoc.html#2]
10
10
  #
11
11
  # == {}[link:index.html"name="1] Deriv methods (for GSL 1.4.90 or later)
12
12
  # Numerical derivatives should now be calculated using the
@@ -73,7 +73,7 @@
73
73
  # * GSL::Diff.central(f, x)
74
74
  # * GSL::Function#diff_central(x)
75
75
  #
76
- # These compute the numerical derivative of the function <tt>f</tt> ( {GSL::Function}[link:files/rdoc/function_rdoc.html] object) at the point <tt>x</tt>
76
+ # These compute the numerical derivative of the function <tt>f</tt> ( {GSL::Function}[link:rdoc/function_rdoc.html] object) at the point <tt>x</tt>
77
77
  # using an adaptive central difference algorithm. The result is returned as an array
78
78
  # which contains the derivative and an estimate of its absolute error.
79
79
  #
@@ -124,10 +124,10 @@
124
124
  # f'(x) = 0.0000000160 +/- 0.0000000339
125
125
  # exact = 0.0000000000
126
126
  #
127
- # {prev}[link:files/rdoc/interp_rdoc.html]
128
- # {next}[link:files/rdoc/cheb_rdoc.html]
127
+ # {prev}[link:rdoc/interp_rdoc.html]
128
+ # {next}[link:rdoc/cheb_rdoc.html]
129
129
  #
130
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
131
- # {top}[link:files/rdoc/index_rdoc.html]
130
+ # {Reference index}[link:rdoc/ref_rdoc.html]
131
+ # {top}[link:index.html]
132
132
  #
133
133
  #
@@ -42,9 +42,9 @@
42
42
  # This replaces the Ruby/GSL default error handler by a user-defined handler
43
43
  # given by a Proc object <tt>proc</tt> or a block.
44
44
  #
45
- # {prev}[link:files/rdoc/use_rdoc.html]
46
- # {next}[link:files/rdoc/math_rdoc.html]
45
+ # {prev}[link:rdoc/use_rdoc.html]
46
+ # {next}[link:rdoc/math_rdoc.html]
47
47
  #
48
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
49
- # {top}[link:files/rdoc/index_rdoc.html]
48
+ # {Reference index}[link:rdoc/ref_rdoc.html]
49
+ # {top}[link:index.html]
50
50
  #
@@ -1,14 +1,14 @@
1
1
  #
2
2
  # = Eigensystems
3
3
  # === {}[link:index.html"name="0.1] Contentes
4
- # 1. {Modules and classes}[link:files/rdoc/eigen_rdoc.html#1]
5
- # 1. {Real Symmetric Matrices}[link:files/rdoc/eigen_rdoc.html#2]
6
- # 1. {Complex Hermitian Matrices}[link:files/rdoc/eigen_rdoc.html#3]
7
- # 1. {Real Nonsymmetric Matrices}[link:files/rdoc/eigen_rdoc.html#4] (>= GSL-1.9)
8
- # 1. {Real Generalized Symmetric-Definite Eigensystems}[link:files/rdoc/eigen_rdoc.html#5] (>= GSL-1.10)
9
- # 1. {Complex Generalized Hermitian-Definite Eigensystems}[link:files/rdoc/eigen_rdoc.html#6] (>= GSL-1.10)
10
- # 1. {Real Generalized Nonsymmetric Eigensystems}[link:files/rdoc/eigen_rdoc.html#7] (>= GSL-1.10)
11
- # 1. {Sorting Eigenvalues and Eigenvectors }[link:files/rdoc/eigen_rdoc.html#8]
4
+ # 1. {Modules and classes}[link:rdoc/eigen_rdoc.html#1]
5
+ # 1. {Real Symmetric Matrices}[link:rdoc/eigen_rdoc.html#2]
6
+ # 1. {Complex Hermitian Matrices}[link:rdoc/eigen_rdoc.html#3]
7
+ # 1. {Real Nonsymmetric Matrices}[link:rdoc/eigen_rdoc.html#4] (>= GSL-1.9)
8
+ # 1. {Real Generalized Symmetric-Definite Eigensystems}[link:rdoc/eigen_rdoc.html#5] (>= GSL-1.10)
9
+ # 1. {Complex Generalized Hermitian-Definite Eigensystems}[link:rdoc/eigen_rdoc.html#6] (>= GSL-1.10)
10
+ # 1. {Real Generalized Nonsymmetric Eigensystems}[link:rdoc/eigen_rdoc.html#7] (>= GSL-1.10)
11
+ # 1. {Sorting Eigenvalues and Eigenvectors }[link:rdoc/eigen_rdoc.html#8]
12
12
  #
13
13
  # == {}[link:index.html"name="1] Modules and classes
14
14
  #
@@ -392,10 +392,10 @@
392
392
  # and <tt>GSL::EIGEN_SORT_ABS_DESC</tt> are supported due to the eigenvalues
393
393
  # being complex.
394
394
  #
395
- # {prev}[link:files/rdoc/linalg_rdoc.html]
396
- # {next}[link:files/rdoc/fft_rdoc.html]
395
+ # {prev}[link:rdoc/linalg_rdoc.html]
396
+ # {next}[link:rdoc/fft_rdoc.html]
397
397
  #
398
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
399
- # {top}[link:files/rdoc/index_rdoc.html]
398
+ # {Reference index}[link:rdoc/ref_rdoc.html]
399
+ # {top}[link:index.html]
400
400
  #
401
401
  #
@@ -1,24 +1,24 @@
1
1
  #
2
2
  # = Fast Fourier Transforms
3
3
  # Contents:
4
- # 1. {Mathematical Definitions}[link:files/rdoc/fft_rdoc.html#1]
5
- # 1. {Complex data FFTs}[link:files/rdoc/fft_rdoc.html#2]
6
- # 1. {Overview of complex data FFTs}[link:files/rdoc/fft_rdoc.html#2.1]
7
- # 1. {Radix-2 FFT routines for complex data}[link:files/rdoc/fft_rdoc.html#2.2]
8
- # 1. {Example of the complex Radix-2 FFT}[link:files/rdoc/fft_rdoc.html#2.2.1]
9
- # 1. {Mixed-radix FFT routines for complex data}[link:files/rdoc/fft_rdoc.html#2.3]
10
- # 1. {GSL::FFT::ComplexWavetable class}[link:files/rdoc/fft_rdoc.html#2.3.1]
11
- # 1. {GSL::FFT::ComplexWorkspace class}[link:files/rdoc/fft_rdoc.html#2.3.2]
12
- # 1. {Methods to compute the transform}[link:files/rdoc/fft_rdoc.html#2.3.3]
13
- # 1. {Example of the mixed-radix FFT}[link:files/rdoc/fft_rdoc.html#2.3.4]
14
- # 1. {Real data FFTs}[link:files/rdoc/fft_rdoc.html#3]
15
- # 1. {Overview of real data FFTs}[link:files/rdoc/fft_rdoc.html#3.1]
16
- # 1. {Radix-2 FFT routines for real data}[link:files/rdoc/fft_rdoc.html#3.2]
17
- # 1. {Mixed-radix FFT routines for real data}[link:files/rdoc/fft_rdoc.html#3.3]
18
- # 1. {Data storage scheme}[link:files/rdoc/fft_rdoc.html#3.3.1]
19
- # 1. {Wavetable and Workspace classes}[link:files/rdoc/fft_rdoc.html#3.3.2]
20
- # 1. {Methods for real FFTs}[link:files/rdoc/fft_rdoc.html#3.3.3]
21
- # 1. {Examples}[link:files/rdoc/fft_rdoc.html#3.3.4]
4
+ # 1. {Mathematical Definitions}[link:rdoc/fft_rdoc.html#1]
5
+ # 1. {Complex data FFTs}[link:rdoc/fft_rdoc.html#2]
6
+ # 1. {Overview of complex data FFTs}[link:rdoc/fft_rdoc.html#2.1]
7
+ # 1. {Radix-2 FFT routines for complex data}[link:rdoc/fft_rdoc.html#2.2]
8
+ # 1. {Example of the complex Radix-2 FFT}[link:rdoc/fft_rdoc.html#2.2.1]
9
+ # 1. {Mixed-radix FFT routines for complex data}[link:rdoc/fft_rdoc.html#2.3]
10
+ # 1. {GSL::FFT::ComplexWavetable class}[link:rdoc/fft_rdoc.html#2.3.1]
11
+ # 1. {GSL::FFT::ComplexWorkspace class}[link:rdoc/fft_rdoc.html#2.3.2]
12
+ # 1. {Methods to compute the transform}[link:rdoc/fft_rdoc.html#2.3.3]
13
+ # 1. {Example of the mixed-radix FFT}[link:rdoc/fft_rdoc.html#2.3.4]
14
+ # 1. {Real data FFTs}[link:rdoc/fft_rdoc.html#3]
15
+ # 1. {Overview of real data FFTs}[link:rdoc/fft_rdoc.html#3.1]
16
+ # 1. {Radix-2 FFT routines for real data}[link:rdoc/fft_rdoc.html#3.2]
17
+ # 1. {Mixed-radix FFT routines for real data}[link:rdoc/fft_rdoc.html#3.3]
18
+ # 1. {Data storage scheme}[link:rdoc/fft_rdoc.html#3.3.1]
19
+ # 1. {Wavetable and Workspace classes}[link:rdoc/fft_rdoc.html#3.3.2]
20
+ # 1. {Methods for real FFTs}[link:rdoc/fft_rdoc.html#3.3.3]
21
+ # 1. {Examples}[link:rdoc/fft_rdoc.html#3.3.4]
22
22
  #
23
23
  # == {}[link:index.html"name="1] Mathematical Definitions
24
24
  # Fast Fourier Transforms are efficient algorithms for calculating the discrete
@@ -59,7 +59,7 @@
59
59
  # == {}[link:index.html"name="2] Complex data FFTs
60
60
  # === {}[link:index.html"name="2.1] Overview of complex data FFTs
61
61
  # The complex data FFT routines are provided as instance methods of
62
- # {GSL::Vector::Complex}[link:files/rdoc/vector_complex_rdoc.html].
62
+ # {GSL::Vector::Complex}[link:rdoc/vector_complex_rdoc.html].
63
63
  #
64
64
  # Here is a table which shows the layout of the array data, and the correspondence
65
65
  # between the time-domain complex data z, and the frequency-domain complex data x.
@@ -82,7 +82,7 @@
82
82
  # frequencies +1/(2 Delta), -1/(2 Delta) which are equivalent. If N is odd then
83
83
  # general structure of the table above still applies, but N/2 does not appear.
84
84
  #
85
- # {GSL::Vector::Complex}[link:files/rdoc/vector_complex_rdoc.html] provides four methods for
85
+ # {GSL::Vector::Complex}[link:rdoc/vector_complex_rdoc.html] provides four methods for
86
86
  # shifting the frequency domain data between <b>FFT order</b>, shown in the table
87
87
  # above, and <b>natural order</b>, which has the most negative freqeuncy component
88
88
  # first, the zero frequency component in the middle, and the most positive
@@ -263,7 +263,7 @@
263
263
  # === {}[link:index.html"name="3.1] Overview of real data FFTs
264
264
  #
265
265
  # The functions for real data FFTs are provided as instance methods of
266
- # {GSL::Vector}[link:files/rdoc/vector.class]. While they are similar to those for
266
+ # {GSL::Vector}[link:rdoc/vector.class]. While they are similar to those for
267
267
  # complex data, there is an important difference in the data storage layout
268
268
  # between forward and inverse transforms. The Fourier transform of a real
269
269
  # sequence is not real. It is a complex sequence with a special symmetry. A
@@ -274,7 +274,7 @@
274
274
  # Forward transforms of real sequences produce half complex sequences of the same
275
275
  # length. Backward and inverse transforms of half complex sequences produce real
276
276
  # sequences of the same length. In both cases, the input and output sequences
277
- # are instances of {GSL::Vector}[link:files/rdoc/vector_rdoc.html].
277
+ # are instances of {GSL::Vector}[link:rdoc/vector_rdoc.html].
278
278
  #
279
279
  # The precise storage arrangements of half complex seqeunces depend on the
280
280
  # algorithm, and are different for radix-2 and mixed-radix routines. The radix-2
@@ -288,7 +288,7 @@
288
288
  #
289
289
  # === {}[link:index.html"name="3.2] Radix-2 FFT routines for real data
290
290
  # The routines for readix-2 real FFTs are provided as instance methods of
291
- # {GSL::Vector}[link:files/rdoc/vector_rdoc.html].
291
+ # {GSL::Vector}[link:rdoc/vector_rdoc.html].
292
292
  #
293
293
  # <b>The FFT methods described below return FFTed data, and the input vector is
294
294
  # not changed. Use methods with '!' as <tt>radix2_tranform!</tt> for in-place
@@ -526,10 +526,10 @@
526
526
  #
527
527
  # graph(nil, data, data2, "-T X -C -g 3 -L 'Real-halfcomplex' -x 0 #{data.size}")
528
528
  #
529
- # {prev}[link:files/rdoc/eigen_rdoc.html]
530
- # {next}[link:files/rdoc/wavelet_rdoc.html]
529
+ # {prev}[link:rdoc/eigen_rdoc.html]
530
+ # {next}[link:rdoc/wavelet_rdoc.html]
531
531
  #
532
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
533
- # {top}[link:files/rdoc/index_rdoc.html]
532
+ # {Reference index}[link:rdoc/ref_rdoc.html]
533
+ # {top}[link:index.html]
534
534
  #
535
535
  #
@@ -11,19 +11,19 @@
11
11
  # two-parameter regression and multiple-parameter fits.
12
12
  #
13
13
  # Contents:
14
- # 1. {Overview}[link:files/rdoc/fit_rdoc.html#1]
15
- # 1. {Linear regression}[link:files/rdoc/fit_rdoc.html#2]
16
- # 1. {Module functions for linear regression}[link:files/rdoc/fit_rdoc.html#2.1]
17
- # 1. {Linear fitting without a constant term}[link:files/rdoc/fit_rdoc.html#3]
18
- # 1. {Multi-parameter fitting}[link:files/rdoc/fit_rdoc.html#4]
19
- # 1. {GSL::MultiFit::Workspace class}[link:files/rdoc/fit_rdoc.html#4.1]
20
- # 1. {Module functions}[link:files/rdoc/fit_rdoc.html#4.2]
21
- # 1. {Higer level interface}[link:files/rdoc/fit_rdoc.html#4.3]
22
- # 1. {NDLINEAR: multi-linear, multi-parameter least squares fitting}[link:files/rdoc/ndlinear_rdoc.html] (GSL extension)
23
- # 1. {Examples}[link:files/rdoc/fit_rdoc.html#5]
24
- # 1. {Linear regression}[link:files/rdoc/fit_rdoc.html#5.1]
25
- # 1. {Exponential fitting}[link:files/rdoc/fit_rdoc.html#5.2]
26
- # 1. {Multi-parameter fitting}[link:files/rdoc/fit_rdoc.html#5.3]
14
+ # 1. {Overview}[link:rdoc/fit_rdoc.html#1]
15
+ # 1. {Linear regression}[link:rdoc/fit_rdoc.html#2]
16
+ # 1. {Module functions for linear regression}[link:rdoc/fit_rdoc.html#2.1]
17
+ # 1. {Linear fitting without a constant term}[link:rdoc/fit_rdoc.html#3]
18
+ # 1. {Multi-parameter fitting}[link:rdoc/fit_rdoc.html#4]
19
+ # 1. {GSL::MultiFit::Workspace class}[link:rdoc/fit_rdoc.html#4.1]
20
+ # 1. {Module functions}[link:rdoc/fit_rdoc.html#4.2]
21
+ # 1. {Higer level interface}[link:rdoc/fit_rdoc.html#4.3]
22
+ # 1. {NDLINEAR: multi-linear, multi-parameter least squares fitting}[link:rdoc/ndlinear_rdoc.html] (GSL extension)
23
+ # 1. {Examples}[link:rdoc/fit_rdoc.html#5]
24
+ # 1. {Linear regression}[link:rdoc/fit_rdoc.html#5.1]
25
+ # 1. {Exponential fitting}[link:rdoc/fit_rdoc.html#5.2]
26
+ # 1. {Multi-parameter fitting}[link:rdoc/fit_rdoc.html#5.3]
27
27
  #
28
28
  # == {}[link:index.html"name="1] Overview
29
29
  # Least-squares fits are found by minimizing \chi^2 (chi-squared), the weighted
@@ -145,9 +145,9 @@
145
145
  # from the scatter of the observations about the best-fit. The sum of squares
146
146
  # of the residuals from the best-fit is also calculated. The returned value is
147
147
  # an array of 4 elements, <tt>[c, cov, chisq, status]</tt>, where <tt>c</tt> is a
148
- # {GSL::Vector}[link:files/rdoc/vector_rdoc.html] object which contains the best-fit parameters,
148
+ # {GSL::Vector}[link:rdoc/vector_rdoc.html] object which contains the best-fit parameters,
149
149
  # and <tt>cov</tt> is the variance-covariance matrix as a
150
- # {GSL::Matrix}[link:files/rdoc/matrix_rdoc.html] object.
150
+ # {GSL::Matrix}[link:rdoc/matrix_rdoc.html] object.
151
151
  #
152
152
  # The best-fit is found by singular value decomposition of the matrix <tt>X</tt>
153
153
  # using the workspace provided in <tt>work</tt> (optional, if not given, it is allocated
@@ -275,10 +275,10 @@
275
275
  #
276
276
  # c, cov, chisq, status = MultiFit.wlinear(X, w, y)
277
277
  #
278
- # {prev}[link:files/rdoc/multimin_rdoc.html]
279
- # {next}[link:files/rdoc/nonlinearfit_rdoc.html]
278
+ # {prev}[link:rdoc/multimin_rdoc.html]
279
+ # {next}[link:rdoc/nonlinearfit_rdoc.html]
280
280
  #
281
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
282
- # {top}[link:files/rdoc/index_rdoc.html]
281
+ # {Reference index}[link:rdoc/ref_rdoc.html]
282
+ # {top}[link:index.html]
283
283
  #
284
284
  #
@@ -90,5 +90,5 @@
90
90
  # 1.800e+01 2.700e+01 ]
91
91
  # => #<GSL::Matrix:0x6dd1b4>
92
92
  #
93
- # {back}[link:files/rdoc/index_rdoc.html]
93
+ # {back}[link:index.html]
94
94
  #
@@ -129,9 +129,9 @@
129
129
  # end
130
130
  # end
131
131
  #
132
- # {prev}[link:files/rdoc/const_rdoc.html]
132
+ # {prev}[link:rdoc/const_rdoc.html]
133
133
  #
134
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
135
- # {top}[link:files/rdoc/index_rdoc.html]
134
+ # {Reference index}[link:rdoc/ref_rdoc.html]
135
+ # {top}[link:index.html]
136
136
  #
137
137
  #
@@ -1,17 +1,17 @@
1
1
  #
2
2
  # = Histograms
3
- # 1. {Histogram allocation}[link:files/rdoc/hist_rdoc.html#1]
4
- # 1. {Copying histograms}[link:files/rdoc/hist_rdoc.html#2]
5
- # 1. {Updating and accessing histogram elements}[link:files/rdoc/hist_rdoc.html#3]
6
- # 1. {Searching histogram ranges}[link:files/rdoc/hist_rdoc.html#4]
7
- # 1. {Histogram Statistics}[link:files/rdoc/hist_rdoc.html#5]
8
- # 1. {Histogram Operations}[link:files/rdoc/hist_rdoc.html#6]
9
- # 1. {Reading and writing histograms}[link:files/rdoc/hist_rdoc.html#7]
10
- # 1. {Extensions}[link:files/rdoc/hist_rdoc.html#8]
11
- # 1. {Histogram Operations}[link:files/rdoc/hist_rdoc.html#8.1]
12
- # 1. {Graph interface}[link:files/rdoc/hist_rdoc.html#8.2]
13
- # 1. {Histogram Fittings}[link:files/rdoc/hist_rdoc.html#8.3]
14
- # 1. {The histogram probability distribution}[link:files/rdoc/hist_rdoc.html#9]
3
+ # 1. {Histogram allocation}[link:rdoc/hist_rdoc.html#1]
4
+ # 1. {Copying histograms}[link:rdoc/hist_rdoc.html#2]
5
+ # 1. {Updating and accessing histogram elements}[link:rdoc/hist_rdoc.html#3]
6
+ # 1. {Searching histogram ranges}[link:rdoc/hist_rdoc.html#4]
7
+ # 1. {Histogram Statistics}[link:rdoc/hist_rdoc.html#5]
8
+ # 1. {Histogram Operations}[link:rdoc/hist_rdoc.html#6]
9
+ # 1. {Reading and writing histograms}[link:rdoc/hist_rdoc.html#7]
10
+ # 1. {Extensions}[link:rdoc/hist_rdoc.html#8]
11
+ # 1. {Histogram Operations}[link:rdoc/hist_rdoc.html#8.1]
12
+ # 1. {Graph interface}[link:rdoc/hist_rdoc.html#8.2]
13
+ # 1. {Histogram Fittings}[link:rdoc/hist_rdoc.html#8.3]
14
+ # 1. {The histogram probability distribution}[link:rdoc/hist_rdoc.html#9]
15
15
  #
16
16
  # == {}[link:index.html"name="1] Histogram allocation
17
17
  # ---
@@ -71,7 +71,7 @@
71
71
  # ---
72
72
  # * GSL::Histogram#set_ranges(v)
73
73
  #
74
- # This sets the ranges of the existing histogram using a {GSL::Vector}[link:files/rdoc/vector_rdoc.html] object.
74
+ # This sets the ranges of the existing histogram using a {GSL::Vector}[link:rdoc/vector_rdoc.html] object.
75
75
  # ---
76
76
  # * GSL::Histogram#set_ranges_uniform(xmin, xmax)
77
77
  # * GSL::Histogram#set_ranges_uniform([xmin, xmax])
@@ -400,10 +400,10 @@
400
400
  # This returns a <tt>Vector::View</tt> object as a reference to the pointer
401
401
  # <tt>double *sum</tt> in the <tt>gsl_histogram_pdf</tt> struct.
402
402
  #
403
- # {prev}[link:files/rdoc/stats_rdoc.html]
404
- # {next}[link:files/rdoc/hist2d_rdoc.html]
403
+ # {prev}[link:rdoc/stats_rdoc.html]
404
+ # {next}[link:rdoc/hist2d_rdoc.html]
405
405
  #
406
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
407
- # {top}[link:files/rdoc/index_rdoc.html]
406
+ # {Reference index}[link:rdoc/ref_rdoc.html]
407
+ # {top}[link:index.html]
408
408
  #
409
409
  #