rb-gsl 1.16.0.4 → 1.16.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (307) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +12 -0
  3. data/.travis.yml +24 -0
  4. data/AUTHORS +6 -0
  5. data/COPYING +341 -339
  6. data/ChangeLog +608 -587
  7. data/Gemfile +4 -0
  8. data/README.md +77 -0
  9. data/Rakefile +14 -33
  10. data/THANKS +1 -1
  11. data/examples/blas/blas.rb +1 -1
  12. data/examples/bspline.rb +3 -3
  13. data/examples/complex/functions.rb +4 -4
  14. data/examples/complex/mul.rb +1 -1
  15. data/examples/const/physconst.rb +4 -4
  16. data/examples/const/travel.rb +4 -4
  17. data/examples/eigen/nonsymmv.rb +1 -1
  18. data/examples/eigen/qhoscillator.rb +3 -3
  19. data/examples/fft/radix2.rb +1 -1
  20. data/examples/fft/real-halfcomplex.rb +3 -3
  21. data/examples/fft/real-halfcomplex2.rb +3 -3
  22. data/examples/fit/expfit.rb +1 -1
  23. data/examples/fit/multifit.rb +1 -1
  24. data/examples/fit/ndlinear.rb +44 -44
  25. data/examples/fit/nonlinearfit.rb +1 -1
  26. data/examples/fit/wlinear.rb +3 -3
  27. data/examples/function/function.rb +1 -1
  28. data/examples/function/min.rb +1 -1
  29. data/examples/function/synchrotron.rb +2 -2
  30. data/examples/gallery/koch.rb +1 -1
  31. data/examples/histogram/cauchy.rb +2 -2
  32. data/examples/histogram/exponential.rb +1 -1
  33. data/examples/histogram/histo3d.rb +1 -1
  34. data/examples/histogram/histogram-pdf.rb +2 -2
  35. data/examples/histogram/xexp.rb +1 -1
  36. data/examples/integration/ahmed.rb +2 -2
  37. data/examples/integration/cosmology.rb +7 -7
  38. data/examples/integration/friedmann.rb +4 -4
  39. data/examples/integration/qng.rb +1 -1
  40. data/examples/interp/demo.rb +2 -2
  41. data/examples/linalg/LQ_solve.rb +1 -1
  42. data/examples/linalg/LU.rb +1 -1
  43. data/examples/linalg/LU2.rb +1 -1
  44. data/examples/linalg/LU_narray.rb +1 -1
  45. data/examples/linalg/PTLQ.rb +1 -1
  46. data/examples/linalg/QRPT.rb +1 -1
  47. data/examples/linalg/chol.rb +1 -1
  48. data/examples/linalg/chol_narray.rb +1 -1
  49. data/examples/linalg/complex.rb +1 -1
  50. data/examples/math/elementary.rb +1 -1
  51. data/examples/math/functions.rb +1 -1
  52. data/examples/math/inf_nan.rb +1 -1
  53. data/examples/math/minmax.rb +1 -1
  54. data/examples/math/power.rb +1 -1
  55. data/examples/math/test.rb +1 -1
  56. data/examples/min.rb +1 -1
  57. data/examples/multimin/bundle.rb +1 -1
  58. data/examples/multimin/cqp.rb +17 -17
  59. data/examples/multiroot/fsolver3.rb +1 -1
  60. data/examples/odeiv/binarysystem.rb +12 -12
  61. data/examples/odeiv/demo.rb +3 -3
  62. data/examples/odeiv/frei1.rb +7 -7
  63. data/examples/odeiv/frei2.rb +4 -4
  64. data/examples/odeiv/oscillator.rb +1 -1
  65. data/examples/odeiv/sedov.rb +3 -3
  66. data/examples/odeiv/whitedwarf.rb +11 -11
  67. data/examples/permutation/ex1.rb +2 -2
  68. data/examples/permutation/permutation.rb +1 -1
  69. data/examples/poly/demo.rb +1 -1
  70. data/examples/random/diffusion.rb +1 -1
  71. data/examples/random/generator.rb +2 -2
  72. data/examples/random/randomwalk.rb +3 -3
  73. data/examples/random/rng.rb +1 -1
  74. data/examples/roots/bisection.rb +1 -1
  75. data/examples/roots/brent.rb +1 -1
  76. data/examples/roots/demo.rb +1 -1
  77. data/examples/roots/newton.rb +2 -2
  78. data/examples/roots/recombination.gp +0 -1
  79. data/examples/sf/hyperg.rb +1 -1
  80. data/examples/sf/sphbessel.rb +1 -1
  81. data/examples/sort/sort.rb +1 -1
  82. data/examples/tamu_anova.rb +4 -4
  83. data/examples/vector/add.rb +1 -1
  84. data/examples/vector/decimate.rb +1 -1
  85. data/examples/vector/gnuplot.rb +8 -8
  86. data/examples/vector/vector.rb +2 -2
  87. data/examples/wavelet/wavelet1.rb +1 -1
  88. data/ext/{gsl → gsl_native}/alf.c +9 -9
  89. data/ext/{gsl → gsl_native}/array.c +64 -151
  90. data/ext/{gsl → gsl_native}/array_complex.c +61 -63
  91. data/ext/{gsl → gsl_native}/blas.c +0 -0
  92. data/ext/{gsl → gsl_native}/blas1.c +32 -32
  93. data/ext/{gsl → gsl_native}/blas2.c +54 -58
  94. data/ext/{gsl → gsl_native}/blas3.c +54 -54
  95. data/ext/{gsl → gsl_native}/block.c +3 -6
  96. data/ext/{gsl/block_source.c → gsl_native/block_source.h} +109 -111
  97. data/ext/gsl_native/bspline.c +122 -0
  98. data/ext/{gsl → gsl_native}/bundle.c +0 -0
  99. data/ext/{gsl → gsl_native}/cdf.c +76 -88
  100. data/ext/{gsl → gsl_native}/cheb.c +74 -85
  101. data/ext/{gsl → gsl_native}/combination.c +9 -16
  102. data/ext/{gsl → gsl_native}/common.c +7 -37
  103. data/ext/{gsl → gsl_native}/complex.c +113 -115
  104. data/ext/gsl_native/const.c +331 -0
  105. data/ext/{gsl → gsl_native}/const_additional.c +12 -33
  106. data/ext/gsl_native/cqp.c +283 -0
  107. data/ext/{gsl → gsl_native}/deriv.c +22 -30
  108. data/ext/{gsl → gsl_native}/dht.c +20 -28
  109. data/ext/{gsl → gsl_native}/diff.c +23 -25
  110. data/ext/{gsl → gsl_native}/dirac.c +44 -45
  111. data/ext/{gsl → gsl_native}/eigen.c +1031 -1082
  112. data/ext/{gsl → gsl_native}/error.c +13 -13
  113. data/ext/{gsl → gsl_native}/extconf.rb +5 -13
  114. data/ext/{gsl → gsl_native}/fft.c +192 -198
  115. data/ext/{gsl → gsl_native}/fit.c +16 -16
  116. data/ext/gsl_native/fresnel.c +312 -0
  117. data/ext/{gsl → gsl_native}/function.c +29 -35
  118. data/ext/{gsl → gsl_native}/geometry.c +15 -15
  119. data/ext/{gsl → gsl_native}/graph.c +37 -87
  120. data/ext/{gsl → gsl_native}/gsl.c +10 -23
  121. data/ext/{gsl → gsl_native}/gsl_narray.c +15 -24
  122. data/ext/{gsl → gsl_native}/histogram.c +123 -150
  123. data/ext/{gsl → gsl_native}/histogram2d.c +71 -96
  124. data/ext/{gsl → gsl_native}/histogram3d.c +72 -72
  125. data/ext/{gsl → gsl_native}/histogram3d_source.c +195 -196
  126. data/ext/{gsl → gsl_native}/histogram_find.c +31 -33
  127. data/ext/{gsl → gsl_native}/histogram_oper.c +43 -52
  128. data/ext/{gsl → gsl_native}/ieee.c +7 -15
  129. data/ext/{gsl → gsl_native}/include/rb_gsl.h +0 -7
  130. data/ext/{gsl → gsl_native}/include/rb_gsl_array.h +15 -25
  131. data/ext/{gsl → gsl_native}/include/rb_gsl_cheb.h +0 -0
  132. data/ext/{gsl → gsl_native}/include/rb_gsl_common.h +44 -52
  133. data/ext/{gsl → gsl_native}/include/rb_gsl_complex.h +0 -0
  134. data/ext/{gsl → gsl_native}/include/rb_gsl_const.h +0 -5
  135. data/ext/{gsl → gsl_native}/include/rb_gsl_dirac.h +0 -0
  136. data/ext/{gsl → gsl_native}/include/rb_gsl_eigen.h +0 -0
  137. data/ext/{gsl → gsl_native}/include/rb_gsl_fft.h +0 -3
  138. data/ext/{gsl → gsl_native}/include/rb_gsl_fit.h +0 -0
  139. data/ext/{gsl → gsl_native}/include/rb_gsl_function.h +0 -0
  140. data/ext/{gsl → gsl_native}/include/rb_gsl_graph.h +2 -2
  141. data/ext/{gsl → gsl_native}/include/rb_gsl_histogram.h +8 -8
  142. data/ext/{gsl → gsl_native}/include/rb_gsl_histogram3d.h +50 -50
  143. data/ext/{gsl → gsl_native}/include/rb_gsl_integration.h +0 -0
  144. data/ext/{gsl → gsl_native}/include/rb_gsl_interp.h +0 -0
  145. data/ext/{gsl → gsl_native}/include/rb_gsl_linalg.h +0 -1
  146. data/ext/{gsl → gsl_native}/include/rb_gsl_math.h +0 -4
  147. data/ext/{gsl → gsl_native}/include/rb_gsl_odeiv.h +0 -0
  148. data/ext/{gsl → gsl_native}/include/rb_gsl_poly.h +3 -3
  149. data/ext/{gsl → gsl_native}/include/rb_gsl_rational.h +1 -1
  150. data/ext/{gsl → gsl_native}/include/rb_gsl_rng.h +0 -0
  151. data/ext/{gsl → gsl_native}/include/rb_gsl_root.h +0 -0
  152. data/ext/{gsl → gsl_native}/include/rb_gsl_sf.h +39 -43
  153. data/ext/{gsl → gsl_native}/include/rb_gsl_statistics.h +0 -0
  154. data/ext/{gsl → gsl_native}/include/rb_gsl_tensor.h +0 -0
  155. data/ext/{gsl → gsl_native}/include/rb_gsl_with_narray.h +0 -0
  156. data/ext/{gsl → gsl_native}/include/templates_off.h +0 -0
  157. data/ext/{gsl → gsl_native}/include/templates_on.h +1 -1
  158. data/ext/{gsl → gsl_native}/integration.c +160 -183
  159. data/ext/{gsl → gsl_native}/interp.c +23 -31
  160. data/ext/gsl_native/jacobi.c +733 -0
  161. data/ext/{gsl → gsl_native}/linalg.c +448 -576
  162. data/ext/{gsl → gsl_native}/linalg_complex.c +84 -98
  163. data/ext/{gsl → gsl_native}/math.c +45 -63
  164. data/ext/{gsl → gsl_native}/matrix.c +4 -6
  165. data/ext/{gsl → gsl_native}/matrix_complex.c +111 -114
  166. data/ext/{gsl → gsl_native}/matrix_double.c +74 -77
  167. data/ext/{gsl → gsl_native}/matrix_int.c +49 -50
  168. data/ext/{gsl/matrix_source.c → gsl_native/matrix_source.h} +280 -302
  169. data/ext/{gsl → gsl_native}/min.c +43 -74
  170. data/ext/{gsl → gsl_native}/monte.c +45 -59
  171. data/ext/{gsl → gsl_native}/multifit.c +138 -147
  172. data/ext/{gsl → gsl_native}/multimin.c +55 -83
  173. data/ext/{gsl → gsl_native}/multimin_fsdf.c +15 -15
  174. data/ext/{gsl → gsl_native}/multiroots.c +61 -64
  175. data/ext/{gsl → gsl_native}/multiset.c +3 -7
  176. data/ext/{gsl → gsl_native}/ndlinear.c +320 -321
  177. data/ext/{gsl → gsl_native}/nmf.c +11 -11
  178. data/ext/{gsl → gsl_native}/nmf_wrap.c +1 -1
  179. data/ext/{gsl → gsl_native}/ntuple.c +13 -13
  180. data/ext/{gsl → gsl_native}/odeiv.c +95 -106
  181. data/ext/gsl_native/ool.c +879 -0
  182. data/ext/{gsl → gsl_native}/permutation.c +36 -34
  183. data/ext/{gsl → gsl_native}/poly.c +2 -5
  184. data/ext/{gsl → gsl_native}/poly2.c +6 -6
  185. data/ext/{gsl/poly_source.c → gsl_native/poly_source.h} +232 -275
  186. data/ext/{gsl → gsl_native}/qrng.c +6 -17
  187. data/ext/{gsl → gsl_native}/randist.c +218 -243
  188. data/ext/{gsl → gsl_native}/rational.c +9 -9
  189. data/ext/{gsl → gsl_native}/rng.c +29 -45
  190. data/ext/{gsl → gsl_native}/root.c +43 -43
  191. data/ext/{gsl → gsl_native}/sf.c +163 -197
  192. data/ext/{gsl → gsl_native}/sf_airy.c +0 -0
  193. data/ext/{gsl → gsl_native}/sf_bessel.c +6 -6
  194. data/ext/{gsl → gsl_native}/sf_clausen.c +0 -0
  195. data/ext/{gsl → gsl_native}/sf_coulomb.c +39 -39
  196. data/ext/{gsl → gsl_native}/sf_coupling.c +29 -29
  197. data/ext/{gsl → gsl_native}/sf_dawson.c +0 -0
  198. data/ext/{gsl → gsl_native}/sf_debye.c +0 -9
  199. data/ext/{gsl → gsl_native}/sf_dilog.c +0 -0
  200. data/ext/{gsl → gsl_native}/sf_elementary.c +2 -2
  201. data/ext/{gsl → gsl_native}/sf_ellint.c +42 -42
  202. data/ext/{gsl → gsl_native}/sf_elljac.c +2 -2
  203. data/ext/{gsl → gsl_native}/sf_erfc.c +0 -4
  204. data/ext/{gsl → gsl_native}/sf_exp.c +2 -2
  205. data/ext/{gsl → gsl_native}/sf_expint.c +1 -11
  206. data/ext/{gsl → gsl_native}/sf_fermi_dirac.c +0 -0
  207. data/ext/{gsl → gsl_native}/sf_gamma.c +1 -5
  208. data/ext/{gsl → gsl_native}/sf_gegenbauer.c +0 -0
  209. data/ext/{gsl → gsl_native}/sf_hyperg.c +0 -0
  210. data/ext/{gsl → gsl_native}/sf_laguerre.c +3 -3
  211. data/ext/{gsl → gsl_native}/sf_lambert.c +0 -0
  212. data/ext/{gsl → gsl_native}/sf_legendre.c +0 -0
  213. data/ext/{gsl → gsl_native}/sf_log.c +3 -3
  214. data/ext/gsl_native/sf_mathieu.c +235 -0
  215. data/ext/{gsl → gsl_native}/sf_power.c +0 -0
  216. data/ext/{gsl → gsl_native}/sf_psi.c +2 -11
  217. data/ext/{gsl → gsl_native}/sf_synchrotron.c +0 -0
  218. data/ext/{gsl → gsl_native}/sf_transport.c +0 -0
  219. data/ext/{gsl → gsl_native}/sf_trigonometric.c +3 -3
  220. data/ext/{gsl → gsl_native}/sf_zeta.c +0 -4
  221. data/ext/{gsl → gsl_native}/signal.c +60 -64
  222. data/ext/{gsl → gsl_native}/siman.c +36 -40
  223. data/ext/{gsl → gsl_native}/sort.c +3 -4
  224. data/ext/{gsl → gsl_native}/spline.c +25 -43
  225. data/ext/{gsl → gsl_native}/stats.c +102 -115
  226. data/ext/{gsl → gsl_native}/sum.c +32 -32
  227. data/ext/{gsl → gsl_native}/tamu_anova.c +0 -0
  228. data/ext/{gsl → gsl_native}/tensor.c +2 -4
  229. data/ext/{gsl/tensor_source.c → gsl_native/tensor_source.h} +144 -144
  230. data/ext/{gsl → gsl_native}/vector.c +2 -4
  231. data/ext/{gsl → gsl_native}/vector_complex.c +165 -171
  232. data/ext/{gsl → gsl_native}/vector_double.c +167 -174
  233. data/ext/{gsl → gsl_native}/vector_int.c +23 -25
  234. data/ext/{gsl/vector_source.c → gsl_native/vector_source.h} +400 -414
  235. data/ext/{gsl → gsl_native}/wavelet.c +215 -236
  236. data/lib/gsl.rb +1 -7
  237. data/lib/gsl/gnuplot.rb +2 -2
  238. data/lib/gsl/version.rb +1 -3
  239. data/rb-gsl.gemspec +29 -0
  240. data/rdoc/blas.rdoc +3 -3
  241. data/rdoc/bspline.rdoc +7 -7
  242. data/rdoc/cheb.rdoc +8 -8
  243. data/rdoc/cholesky_complex.rdoc +1 -1
  244. data/rdoc/combi.rdoc +9 -9
  245. data/rdoc/complex.rdoc +11 -11
  246. data/rdoc/const.rdoc +20 -20
  247. data/rdoc/dht.rdoc +6 -6
  248. data/rdoc/diff.rdoc +6 -6
  249. data/rdoc/ehandling.rdoc +3 -3
  250. data/rdoc/eigen.rdoc +11 -11
  251. data/rdoc/fft.rdoc +26 -26
  252. data/rdoc/fit.rdoc +18 -18
  253. data/rdoc/graph.rdoc +2 -2
  254. data/rdoc/hist.rdoc +16 -16
  255. data/rdoc/hist2d.rdoc +4 -4
  256. data/rdoc/hist3d.rdoc +3 -3
  257. data/rdoc/integration.rdoc +16 -16
  258. data/rdoc/interp.rdoc +11 -11
  259. data/rdoc/intro.rdoc +3 -3
  260. data/rdoc/linalg.rdoc +20 -20
  261. data/rdoc/linalg_complex.rdoc +1 -1
  262. data/rdoc/math.rdoc +13 -13
  263. data/rdoc/matrix.rdoc +22 -22
  264. data/rdoc/min.rdoc +9 -9
  265. data/rdoc/monte.rdoc +3 -3
  266. data/rdoc/multimin.rdoc +12 -12
  267. data/rdoc/multiroot.rdoc +12 -12
  268. data/rdoc/narray.rdoc +9 -9
  269. data/rdoc/ndlinear.rdoc +4 -4
  270. data/rdoc/nonlinearfit.rdoc +17 -17
  271. data/rdoc/ntuple.rdoc +5 -5
  272. data/rdoc/odeiv.rdoc +12 -12
  273. data/rdoc/perm.rdoc +11 -11
  274. data/rdoc/poly.rdoc +17 -17
  275. data/rdoc/qrng.rdoc +9 -9
  276. data/rdoc/randist.rdoc +10 -10
  277. data/rdoc/ref.rdoc +49 -49
  278. data/rdoc/rng.rdoc +9 -9
  279. data/rdoc/roots.rdoc +12 -12
  280. data/rdoc/sf.rdoc +35 -35
  281. data/rdoc/siman.rdoc +3 -3
  282. data/rdoc/sort.rdoc +6 -6
  283. data/rdoc/start.rdoc +2 -2
  284. data/rdoc/stats.rdoc +13 -13
  285. data/rdoc/sum.rdoc +4 -4
  286. data/rdoc/tensor.rdoc +3 -3
  287. data/rdoc/tut.rdoc +1 -1
  288. data/rdoc/use.rdoc +3 -3
  289. data/rdoc/vector.rdoc +28 -28
  290. data/rdoc/vector_complex.rdoc +6 -6
  291. data/rdoc/wavelet.rdoc +8 -8
  292. data/test/gsl/blas_test.rb +1 -1
  293. data/test/gsl/index_test.rb +61 -0
  294. data/test/gsl/matrix_test.rb +21 -0
  295. data/uncrustify.cfg +1693 -0
  296. metadata +212 -243
  297. data/README +0 -28
  298. data/ext/gsl/bspline.c +0 -130
  299. data/ext/gsl/const.c +0 -672
  300. data/ext/gsl/cqp.c +0 -283
  301. data/ext/gsl/fcmp.c +0 -64
  302. data/ext/gsl/fresnel.c +0 -312
  303. data/ext/gsl/jacobi.c +0 -739
  304. data/ext/gsl/ool.c +0 -879
  305. data/ext/gsl/oper_complex_source.c +0 -251
  306. data/ext/gsl/sf_mathieu.c +0 -238
  307. data/rdoc/index.rdoc +0 -50
@@ -20,12 +20,12 @@
20
20
  # allowing full accuracy to be retained for small results.
21
21
  #
22
22
  # Contents:
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]
23
+ # 1. {Introduction}[link:rdoc/randist_rdoc.html#label-Introduction]
24
+ # 1. {The Gaussian Distribution}[link:rdoc/randist_rdoc.html#label-The+Gaussian+Distribution]
25
+ # 1. {The Gaussian Tail Distribution}[link:rdoc/randist_rdoc.html#label-The+Gaussian+Tail+Distribution]
26
26
  # ...
27
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]
28
+ # 1. {Shuffling and Sampling}[link:rdoc/randist_rdoc.html#label-Shuffling+and+Sampling]
29
29
  #
30
30
  # == Introduction
31
31
  # Continuous random number distributions are defined by a probability density
@@ -205,12 +205,12 @@
205
205
  # * GSL::Rng#shuffle(v, n)
206
206
  #
207
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>.
208
+ # stored in the {GSL::Vector}[link:rdoc/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:vector_rdoc.html] object with <tt>k</tt> objects
213
- # taken randomly from the {GSL::Vector}[link:vector_rdoc.html] object <tt>v</tt>.
212
+ # This returns a {GSL::Vector}[link:rdoc/vector_rdoc.html] object with <tt>k</tt> objects
213
+ # taken randomly from the {GSL::Vector}[link:rdoc/vector_rdoc.html] object <tt>v</tt>.
214
214
  #
215
215
  # The objects are sampled without replacement, thus each object can only
216
216
  # appear once in the returned vector. It is required that <tt>k</tt> be less
@@ -224,10 +224,10 @@
224
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:qrng_rdoc.html]
228
- # {next}[link:stats_rdoc.html]
227
+ # {prev}[link:rdoc/qrng_rdoc.html]
228
+ # {next}[link:rdoc/stats_rdoc.html]
229
229
  #
230
- # {Reference index}[link:ref_rdoc.html]
230
+ # {Reference index}[link:rdoc/ref_rdoc.html]
231
231
  # {top}[link:index.html]
232
232
  #
233
233
  #
@@ -1,5 +1,5 @@
1
1
  #
2
- # = {Ruby/GSL Reference}[link:ref_rdoc.html]
2
+ # = {Ruby/GSL Reference}[link:rdoc/ref_rdoc.html]
3
3
  # (See also {Gnu Scientific Library -- Reference Manual}[https://gnu.org/software/gsl/manual/html_node/])
4
4
  #
5
5
  # == Front Matter
@@ -31,63 +31,63 @@
31
31
  #
32
32
  # == Ruby/GSL Reference
33
33
  #
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]
34
+ # 1. {Introduction}[link:rdoc/intro_rdoc.html]
35
+ # 1. {Using Ruby/GSL}[link:rdoc/use_rdoc.html]
36
+ # 1. {Error Handling}[link:rdoc/ehandling_rdoc.html]
37
+ # 1. {Mathematical Functions}[link:rdoc/math_rdoc.html]
38
+ # 1. {Complex Numbers}[link:rdoc/complex_rdoc.html]
39
+ # 1. {Polynomials}[link:rdoc/poly_rdoc.html]
40
+ # 1. {Special Functions}[link:rdoc/sf_rdoc.html]
41
+ # 1. {Vectors}[link:rdoc/vector_rdoc.html] and {Matrices}[link:rdoc/matrix_rdoc.html]
42
+ # 1. {Permutations}[link:rdoc/perm_rdoc.html]
43
+ # 1. {Combinations}[link:rdoc/combi_rdoc.html]
44
44
  --
45
- # 1. {Multiset}[link:sort_rdoc.html] (GSL-1.14)
45
+ # 1. {Multiset}[link:rdoc/sort_rdoc.html] (GSL-1.14)
46
46
  ++
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]
47
+ # 1. {Sorting}[link:rdoc/sort_rdoc.html]
48
+ # 1. {BLAS Support}[link:rdoc/blas_rdoc.html]
49
+ # 1. {Linear Algebra}[link:rdoc/linalg_rdoc.html]
50
+ # 1. {Eigen Systems}[link:rdoc/eigen_rdoc.html]
51
+ # 1. {Fast Fourier Transform}[link:rdoc/fft_rdoc.html]
52
+ # 1. {Numerical Integration}[link:rdoc/integration_rdoc.html]
53
+ # 1. {Random Number Generation}[link:rdoc/rng_rdoc.html]
54
+ # 1. {Quasi-Random Sequences}[link:rdoc/qrng_rdoc.html]
55
+ # 1. {Random Number Distributions}[link:rdoc/randist_rdoc.html]
56
+ # 1. {Statistics}[link:rdoc/stats_rdoc.html]
57
+ # 1. {1d-Histograms}[link:rdoc/hist_rdoc.html], {2d-Histograms}[link:rdoc/hist2d_rdoc.html] and {3d-Histograms}[link:rdoc/hist3d_rdoc.html]
58
+ # 1. {N-tuples}[link:rdoc/ntuple_rdoc.html]
59
+ # 1. {Monte-Carlo Integration}[link:rdoc/monte_rdoc.html]
60
+ # 1. {Simulated Annealing}[link:rdoc/siman_rdoc.html]
61
+ # 1. {Ordinary Differential Equations}[link:rdoc/odeiv_rdoc.html]
62
+ # 1. {Interpolation}[link:rdoc/interp_rdoc.html]
63
+ # 1. {Numerical Differentiation}[link:rdoc/diff_rdoc.html]
64
+ # 1. {Chebyshev Approximations}[link:rdoc/cheb_rdoc.html]
65
+ # 1. {Series Acceleration}[link:rdoc/sum_rdoc.html]
66
+ # 1. {Wavelet Transforms}[link:rdoc/wavelet_rdoc.html] (GSL-1.6 feature)
67
+ # 1. {Discrete Hankel Transforms}[link:rdoc/dht_rdoc.html]
68
+ # 1. {One dimensional Root-Finding}[link:rdoc/roots_rdoc.html]
69
+ # 1. {One dimensional Minimization}[link:rdoc/min_rdoc.html]
70
+ # 1. {Multidimensional Root-Finding}[link:rdoc/multiroot_rdoc.html]
71
+ # 1. {Multidimensional Minimization}[link:rdoc/multimin_rdoc.html]
72
+ # 1. {Least-Squares Fitting}[link:rdoc/fit_rdoc.html]
73
+ # 1. {Nonlinear Least-Squares Fitting}[link:rdoc/nonlinearfit_rdoc.html]
74
+ # 1. {Basis Splines}[link:rdoc/bspline_rdoc.html]
75
+ # 1. {Physical Constants}[link:rdoc/const_rdoc.html]
76
+ # 1. {Graphics}[link:rdoc/graph_rdoc.html]
77
77
  # 1. Supported GSL add-on packages
78
- # 1. {rngextra}[link:rng_rdoc.html#label-Random+number+generator+initialization]
79
- # 1. {Tensor manipulations}[link:tensor_rdoc.html]
78
+ # 1. {rngextra}[link:rdoc/rng_rdoc.html#label-Random+number+generator+initialization]
79
+ # 1. {Tensor manipulations}[link:rdoc/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: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]
84
+ # 1. {NDLINEAR: multi-linear, multi-parameter least squares fitting}[link:rdoc/ndlinear_rdoc.html]
85
+ # 1. {ALF: associated Legendre polynomials}[link:rdoc/alf_rdoc.html]
86
+ # 1. {NArray compatibilities}[link:rdoc/narray_rdoc.html]
87
+ # 1. {Changes since Ruby/GSL 1.10.3}[link:rdoc/changes_rdoc.html]
88
88
  # 1. {GNU Free Documentation Licence}[https://gnu.org/software/gsl/manual/html_node/GNU-Free-Documentation-License.html]
89
89
  #
90
- # {next}[link:intro_rdoc.html]
90
+ # {next}[link:rdoc/intro_rdoc.html]
91
91
  #
92
92
  # {top}[link:index.html]
93
93
  #
@@ -13,12 +13,12 @@
13
13
  #
14
14
  #
15
15
  # Contents:
16
- # 1. {General comments on random numbers}[link:rng_rdoc.html#label-General+comments+on+random+numbers]
17
- # 1. {The Random Number Generator Interface: GSL::Rng class}[link:rng_rdoc.html#label-The+Random+Number+Generator+Interface]
18
- # 1. {Random number generator initialization}[link:rng_rdoc.html#label-Random+number+generator+initialization]
19
- # 1. {Sampling from a random number generator}[link:rng_rdoc.html#label-Sampling+from+a+random+number+generator]
20
- # 1. {Auxiliary random number generator functions}[link:rng_rdoc.html#label-Auxiliary+random+number+generator+functions]
21
- # 1. {Random number environment variables}[link:rng_rdoc.html#label-Random+number+environment+variables]
16
+ # 1. {General comments on random numbers}[link:rdoc/rng_rdoc.html#label-General+comments+on+random+numbers]
17
+ # 1. {The Random Number Generator Interface: GSL::Rng class}[link:rdoc/rng_rdoc.html#label-The+Random+Number+Generator+Interface]
18
+ # 1. {Random number generator initialization}[link:rdoc/rng_rdoc.html#label-Random+number+generator+initialization]
19
+ # 1. {Sampling from a random number generator}[link:rdoc/rng_rdoc.html#label-Sampling+from+a+random+number+generator]
20
+ # 1. {Auxiliary random number generator functions}[link:rdoc/rng_rdoc.html#label-Auxiliary+random+number+generator+functions]
21
+ # 1. {Random number environment variables}[link:rdoc/rng_rdoc.html#label-Random+number+environment+variables]
22
22
  #
23
23
  # == General comments on random numbers
24
24
  # In 1988, Park and Miller wrote a paper entitled "Random number generators:
@@ -195,9 +195,9 @@
195
195
  # The initial value of the default seed is zero.
196
196
  #
197
197
  #
198
- # {prev}[link:integration_rdoc.html]
199
- # {next}[link:qrng_rdoc.html]
198
+ # {prev}[link:rdoc/integration_rdoc.html]
199
+ # {next}[link:rdoc/qrng_rdoc.html]
200
200
  #
201
- # {Reference index}[link:ref_rdoc.html]
201
+ # {Reference index}[link:rdoc/ref_rdoc.html]
202
202
  # {top}[link:index.html]
203
203
  #
@@ -8,13 +8,13 @@
8
8
  # and its derivative (hence the name fdf) to be supplied by the user.
9
9
  #
10
10
  # Contents:
11
- # 1. {Solver classes}[link:roots_rdoc.html#label-Solver+classes]
12
- # 1. {Methods}[link:roots_rdoc.html#label-Methods]
13
- # 1. {Methods to solve equations}[link:roots_rdoc.html#label-Methods+to+solve+equations]
14
- # 1. {GSL::Function_fdf class: Providing the function to solve}[link:roots_rdoc.html#label-Function_fdf+class]
15
- # 1. {Search Stopping Parameters}[link:roots_rdoc.html#label-Search+Stopping+Parameters]
16
- # 1. {Higher-level interface}[link:roots_rdoc.html#label-High-level+interface]
17
- # 1. {Example}[link:roots_rdoc.html#label-Example]
11
+ # 1. {Solver classes}[link:rdoc/roots_rdoc.html#label-Solver+classes]
12
+ # 1. {Methods}[link:rdoc/roots_rdoc.html#label-Methods]
13
+ # 1. {Methods to solve equations}[link:rdoc/roots_rdoc.html#label-Methods+to+solve+equations]
14
+ # 1. {GSL::Function_fdf class: Providing the function to solve}[link:rdoc/roots_rdoc.html#label-Function_fdf+class]
15
+ # 1. {Search Stopping Parameters}[link:rdoc/roots_rdoc.html#label-Search+Stopping+Parameters]
16
+ # 1. {Higher-level interface}[link:rdoc/roots_rdoc.html#label-High-level+interface]
17
+ # 1. {Example}[link:rdoc/roots_rdoc.html#label-Example]
18
18
  #
19
19
  # == Solver classes
20
20
  #
@@ -51,7 +51,7 @@
51
51
  # This initialize the solver <tt>self</tt> to use the function <tt>f</tt>,
52
52
  # and the initial search
53
53
  # interval <tt>xl, xu</tt>. The function to be solved <tt>f</tt> is given
54
- # an instanse of the {GSL::Function}[link:function_rdoc.html] class.
54
+ # an instanse of the {GSL::Function}[link:rdoc/function_rdoc.html] class.
55
55
  #
56
56
  # ---
57
57
  # * GSL::Root::FdfSolver#set(fdf, r)
@@ -91,7 +91,7 @@
91
91
  #
92
92
  # === Function_fdf class
93
93
  # The <tt>FSolver</tt> object require an instance of the
94
- # {GSL::Function}[link:function_rdoc.html] class, which is already introduced elsewhere.
94
+ # {GSL::Function}[link:rdoc/function_rdoc.html] class, which is already introduced elsewhere.
95
95
  # The <tt>FdfSolver</tt> which uses the root-polishing algorithm requires not only
96
96
  # the function to solve, but also
97
97
  # procedures to calculate the derivatives. This is
@@ -296,10 +296,10 @@
296
296
  # printf("%5d %10.7f %+10.7f %10.7f\n", iter, x, x - expected, x - x0)
297
297
  # end while status != GSL::SUCCESS
298
298
  #
299
- # {prev}[link:dht_rdoc.html]
300
- # {next}[link:min_rdoc.html]
299
+ # {prev}[link:rdoc/dht_rdoc.html]
300
+ # {next}[link:rdoc/min_rdoc.html]
301
301
  #
302
- # {Reference index}[link:ref_rdoc.html]
302
+ # {Reference index}[link:rdoc/ref_rdoc.html]
303
303
  # {top}[link:index.html]
304
304
  #
305
305
  #
@@ -2,38 +2,38 @@
2
2
  # = Special Functions
3
3
  #
4
4
  # === Contents:
5
- # 1. {Usage:}[link:sf_rdoc.html#label-Usage]
6
- # 1. {GSL::Sf::Result class}[link:sf_rdoc.html#label-Result+class]
7
- # 1. {Modes}[link:sf_rdoc.html#label-Modes]
8
- # 1. {Airy functions}[link:sf_rdoc.html#label-Airy+Functions+and+Derivatives]
9
- # 1. {Bessel functins}[link:sf_rdoc.html#label-Bessel+Functions]
10
- # 1. {Clausen functins}[link:sf_rdoc.html#label-Clausen+Functions]
11
- # 1. {Coulomb functins}[link:sf_rdoc.html#label-Coulomb+Functions]
12
- # 1. {Coupling coefficients}[link:sf_rdoc.html#label-Coupling+Coefficients]
13
- # 1. {Dawson coefficients}[link:sf_rdoc.html#label-Dawson+Function]
14
- # 1. {Debye coefficients}[link:sf_rdoc.html#label-Debye+Functions]
15
- # 1. {Dilogarithm}[link:sf_rdoc.html#label-Dilogarithm]
16
- # 1. {Elementary operations}[link:sf_rdoc.html#label-Elementary+Operations]
17
- # 1. {Elliptic integrals}[link:sf_rdoc.html#label-Elliptic+Integrals]
18
- # 1. {Elliptic functions}[link:sf_rdoc.html#label-Elliptic+Functions+%28Jacobi%29]
19
- # 1. {Error functions}[link:sf_rdoc.html#label-Error+Functions]
20
- # 1. {Exponential functions}[link:sf_rdoc.html#label-Exponential+Functions]
21
- # 1. {Exponential integrals}[link:sf_rdoc.html#label-Exponential+Integrals]
22
- # 1. {Fermi-Dirac function}[link:sf_rdoc.html#label-Fermi-Dirac+Functions]
23
- # 1. {Gamma function}[link:sf_rdoc.html#label-Gamma+Function]
24
- # 1. {Gegenbauer functions}[link:sf_rdoc.html#label-Gegenbauer+Functions]
25
- # 1. {Hypergeometric functions}[link:sf_rdoc.html#label-Hypergeometric+Functions]
26
- # 1. {Laguerre functions}[link:sf_rdoc.html#label-Laguerre+Functions]
27
- # 1. {Lambert W functions}[link:sf_rdoc.html#label-Lambert+W+Functions]
28
- # 1. {Legendre functions and spherical harmonics}[link:sf_rdoc.html#label-Legendre+Functions+and+Spherical+Harmonics]
29
- # 1. {Logarithm and related functions}[link:sf_rdoc.html#label-Logarithm+and+Related+Functions]
30
- # 1. {Mathieu functions}[link:sf_rdoc.html#label-Mathieu+functions]
31
- # 1. {Power function}[link:sf_rdoc.html#label-Power+Functions]
32
- # 1. {Psi (digamma) function}[link:sf_rdoc.html#label-Psi+%28Digamma%29+Function]
33
- # 1. {Synchrotron functions}[link:sf_rdoc.html#label-Synchrotron+Functions]
34
- # 1. {Transport functions}[link:sf_rdoc.html#label-Transport+Functions]
35
- # 1. {Trigonometric functions}[link:sf_rdoc.html#label-Trigonometric+Functions]
36
- # 1. {Zeta functions}[link:sf_rdoc.html#label-Zeta+Functions]
5
+ # 1. {Usage:}[link:rdoc/sf_rdoc.html#label-Usage]
6
+ # 1. {GSL::Sf::Result class}[link:rdoc/sf_rdoc.html#label-Result+class]
7
+ # 1. {Modes}[link:rdoc/sf_rdoc.html#label-Modes]
8
+ # 1. {Airy functions}[link:rdoc/sf_rdoc.html#label-Airy+Functions+and+Derivatives]
9
+ # 1. {Bessel functins}[link:rdoc/sf_rdoc.html#label-Bessel+Functions]
10
+ # 1. {Clausen functins}[link:rdoc/sf_rdoc.html#label-Clausen+Functions]
11
+ # 1. {Coulomb functins}[link:rdoc/sf_rdoc.html#label-Coulomb+Functions]
12
+ # 1. {Coupling coefficients}[link:rdoc/sf_rdoc.html#label-Coupling+Coefficients]
13
+ # 1. {Dawson coefficients}[link:rdoc/sf_rdoc.html#label-Dawson+Function]
14
+ # 1. {Debye coefficients}[link:rdoc/sf_rdoc.html#label-Debye+Functions]
15
+ # 1. {Dilogarithm}[link:rdoc/sf_rdoc.html#label-Dilogarithm]
16
+ # 1. {Elementary operations}[link:rdoc/sf_rdoc.html#label-Elementary+Operations]
17
+ # 1. {Elliptic integrals}[link:rdoc/sf_rdoc.html#label-Elliptic+Integrals]
18
+ # 1. {Elliptic functions}[link:rdoc/sf_rdoc.html#label-Elliptic+Functions+%28Jacobi%29]
19
+ # 1. {Error functions}[link:rdoc/sf_rdoc.html#label-Error+Functions]
20
+ # 1. {Exponential functions}[link:rdoc/sf_rdoc.html#label-Exponential+Functions]
21
+ # 1. {Exponential integrals}[link:rdoc/sf_rdoc.html#label-Exponential+Integrals]
22
+ # 1. {Fermi-Dirac function}[link:rdoc/sf_rdoc.html#label-Fermi-Dirac+Functions]
23
+ # 1. {Gamma function}[link:rdoc/sf_rdoc.html#label-Gamma+Function]
24
+ # 1. {Gegenbauer functions}[link:rdoc/sf_rdoc.html#label-Gegenbauer+Functions]
25
+ # 1. {Hypergeometric functions}[link:rdoc/sf_rdoc.html#label-Hypergeometric+Functions]
26
+ # 1. {Laguerre functions}[link:rdoc/sf_rdoc.html#label-Laguerre+Functions]
27
+ # 1. {Lambert W functions}[link:rdoc/sf_rdoc.html#label-Lambert+W+Functions]
28
+ # 1. {Legendre functions and spherical harmonics}[link:rdoc/sf_rdoc.html#label-Legendre+Functions+and+Spherical+Harmonics]
29
+ # 1. {Logarithm and related functions}[link:rdoc/sf_rdoc.html#label-Logarithm+and+Related+Functions]
30
+ # 1. {Mathieu functions}[link:rdoc/sf_rdoc.html#label-Mathieu+functions]
31
+ # 1. {Power function}[link:rdoc/sf_rdoc.html#label-Power+Functions]
32
+ # 1. {Psi (digamma) function}[link:rdoc/sf_rdoc.html#label-Psi+%28Digamma%29+Function]
33
+ # 1. {Synchrotron functions}[link:rdoc/sf_rdoc.html#label-Synchrotron+Functions]
34
+ # 1. {Transport functions}[link:rdoc/sf_rdoc.html#label-Transport+Functions]
35
+ # 1. {Trigonometric functions}[link:rdoc/sf_rdoc.html#label-Trigonometric+Functions]
36
+ # 1. {Zeta functions}[link:rdoc/sf_rdoc.html#label-Zeta+Functions]
37
37
  #
38
38
  # == Usage
39
39
  # Ruby/GSL provides all the (documented) GSL special functions as module functions
@@ -1613,10 +1613,10 @@
1613
1613
  #
1614
1614
  # Computes the eta function eta(s) for arbitrary s.
1615
1615
  #
1616
- # {prev}[link:poly_rdoc.html]
1617
- # {next}[link:vector_rdoc.html]
1616
+ # {prev}[link:rdoc/poly_rdoc.html]
1617
+ # {next}[link:rdoc/vector_rdoc.html]
1618
1618
  #
1619
- # {Reference index}[link:ref_rdoc.html]
1619
+ # {Reference index}[link:rdoc/ref_rdoc.html]
1620
1620
  # {top}[link:index.html]
1621
1621
  #
1622
1622
  #
@@ -81,9 +81,9 @@
81
81
  # Siman::solve(rng, x, efunc, step, metric, nil, params)
82
82
  # p x
83
83
  #
84
- # {prev}[link:monte_rdoc.html]
85
- # {next}[link:odeiv_rdoc.html]
84
+ # {prev}[link:rdoc/monte_rdoc.html]
85
+ # {next}[link:rdoc/odeiv_rdoc.html]
86
86
  #
87
- # {Reference index}[link:ref_rdoc.html]
87
+ # {Reference index}[link:rdoc/ref_rdoc.html]
88
88
  # {top}[link:index.html]
89
89
  #
@@ -1,9 +1,9 @@
1
1
  #
2
2
  # = Sorting
3
3
  # Contents:
4
- # 1. {Heapsort of vectors}[link:sort_rdoc.html#label-Heapsort]
5
- # 1. {Sorting vectors}[link:sort_rdoc.html#label-Sorting+vectors]
6
- # 1. {Selecting the k smallest or largest elements}[link:sort_rdoc.html#label-Selecting+the+k+smallest+or+largest+elements]
4
+ # 1. {Heapsort of vectors}[link:rdoc/sort_rdoc.html#label-Heapsort]
5
+ # 1. {Sorting vectors}[link:rdoc/sort_rdoc.html#label-Sorting+vectors]
6
+ # 1. {Selecting the k smallest or largest elements}[link:rdoc/sort_rdoc.html#label-Selecting+the+k+smallest+or+largest+elements]
7
7
  #
8
8
  # == Heapsort
9
9
  #
@@ -85,10 +85,10 @@
85
85
  # <tt>k</tt> must be less than or equal to the length of the vector.
86
86
  #
87
87
  #
88
- # {prev}[link:combi_rdoc.html]
89
- # {next}[link:blas_rdoc.html]
88
+ # {prev}[link:rdoc/combi_rdoc.html]
89
+ # {next}[link:rdoc/blas_rdoc.html]
90
90
  #
91
- # {Reference index}[link:ref_rdoc.html]
91
+ # {Reference index}[link:rdoc/ref_rdoc.html]
92
92
  # {top}[link:index.html]
93
93
  #
94
94
  #
@@ -8,9 +8,9 @@
8
8
  # written for very high level languages. The source code is distributed
9
9
  # under the GNU General Public License.
10
10
  #
11
- # The {Ruby/GSL}[https://blackwinter.github.com/rb-gsl] is Ruby
11
+ # The {Ruby/GSL}[https://sciruby.github.com/rb-gsl] is Ruby
12
12
  # bindings for GSL. This provides higher-level interfaces to the GSL functions.
13
- # See {here}[link:use_rdoc.html] for installation. To use the library , just put at the head of your scripts <tt>require("gsl")</tt>, or type it from the command line of <tt>irb</tt>.
13
+ # See {here}[link:rdoc/use_rdoc.html] for installation. To use the library , just put at the head of your scripts <tt>require("gsl")</tt>, or type it from the command line of <tt>irb</tt>.
14
14
  #
15
15
  #
16
16
  #
@@ -1,15 +1,15 @@
1
1
  #
2
2
  # = Statistics
3
- # 1. {Mean, Standard Deviation and Variance}[link:stats_rdoc.html#label-Mean%2C+Standard+Deviation+and+Variance]
4
- # 1. {Absolute deviation}[link:stats_rdoc.html#label-Absolute+deviation]
5
- # 1. {Higher moments (skewness and kurtosis)}[link:stats_rdoc.html#label-Higher+moments+%28skewness+and+kurtosis%29]
6
- # 1. {Autocorrelation}[link:stats_rdoc.html#label-Autocorrelation]
7
- # 1. {Covariance}[link:stats_rdoc.html#label-Covariance]
8
- # 1. {Correlation}[link:stats_rdoc.html#label-Correlation]
9
- # 1. {Weighted samples}[link:stats_rdoc.html#label-Weighted+samples]
10
- # 1. {Maximum and minimum values}[link:stats_rdoc.html#label-Maximum+and+Minimum+values]
11
- # 1. {Median and percentiles}[link:stats_rdoc.html#label-Median+and+Percentiles]
12
- # 1. {Examples}[link:stats_rdoc.html#label-Example]
3
+ # 1. {Mean, Standard Deviation and Variance}[link:rdoc/stats_rdoc.html#label-Mean%2C+Standard+Deviation+and+Variance]
4
+ # 1. {Absolute deviation}[link:rdoc/stats_rdoc.html#label-Absolute+deviation]
5
+ # 1. {Higher moments (skewness and kurtosis)}[link:rdoc/stats_rdoc.html#label-Higher+moments+%28skewness+and+kurtosis%29]
6
+ # 1. {Autocorrelation}[link:rdoc/stats_rdoc.html#label-Autocorrelation]
7
+ # 1. {Covariance}[link:rdoc/stats_rdoc.html#label-Covariance]
8
+ # 1. {Correlation}[link:rdoc/stats_rdoc.html#label-Correlation]
9
+ # 1. {Weighted samples}[link:rdoc/stats_rdoc.html#label-Weighted+samples]
10
+ # 1. {Maximum and minimum values}[link:rdoc/stats_rdoc.html#label-Maximum+and+Minimum+values]
11
+ # 1. {Median and percentiles}[link:rdoc/stats_rdoc.html#label-Median+and+Percentiles]
12
+ # 1. {Examples}[link:rdoc/stats_rdoc.html#label-Example]
13
13
  #
14
14
  # == Mean, Standard Deviation and Variance
15
15
  #
@@ -211,9 +211,9 @@
211
211
  # printf("The largest value is %g\n", largest);
212
212
  # printf("The smallest value is %g\n", smallest);
213
213
  #
214
- # {prev}[link:randist_rdoc.html]
215
- # {next}[link:hist_rdoc.html]
214
+ # {prev}[link:rdoc/randist_rdoc.html]
215
+ # {next}[link:rdoc/hist_rdoc.html]
216
216
  #
217
- # {Reference index}[link:ref_rdoc.html]
217
+ # {Reference index}[link:rdoc/ref_rdoc.html]
218
218
  # {top}[link:index.html]
219
219
  #
@@ -2,7 +2,7 @@
2
2
  # = Series Acceleration
3
3
  # In Ruby/GSL, series acceleration functions are provided as singleton methods
4
4
  # for the <tt>GSL::Sum::Levin_u, Levin_utrunc</tt> classes, and methods of
5
- # an object of the {GSL::Vector}[link:vector_rdoc.html] class.
5
+ # an object of the {GSL::Vector}[link:rdoc/vector_rdoc.html] class.
6
6
  #
7
7
  # == Modules and classes
8
8
  # * GSL
@@ -55,10 +55,10 @@
55
55
  # <tt>sum_plain</tt> is the term-by-term sum, and <tt>terms_used</tt> is the number of
56
56
  # terms actually used in the calculation.
57
57
  #
58
- # {prev}[link:cheb_rdoc.html]
59
- # {next}[link:dht_rdoc.html]
58
+ # {prev}[link:rdoc/cheb_rdoc.html]
59
+ # {next}[link:rdoc/dht_rdoc.html]
60
60
  #
61
- # {Reference index}[link:ref_rdoc.html]
61
+ # {Reference index}[link:rdoc/ref_rdoc.html]
62
62
  # {top}[link:index.html]
63
63
  #
64
64
  #