gsl 1.15.3 → 1.16.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (446) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.travis.yml +24 -0
  4. data/AUTHORS +10 -2
  5. data/COPYING +341 -339
  6. data/ChangeLog +612 -554
  7. data/Gemfile +4 -0
  8. data/README.md +77 -0
  9. data/Rakefile +14 -93
  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/{alf.c → gsl_native/alf.c} +10 -10
  89. data/ext/{array.c → gsl_native/array.c} +70 -159
  90. data/ext/{array_complex.c → gsl_native/array_complex.c} +63 -66
  91. data/ext/{blas.c → gsl_native/blas.c} +2 -3
  92. data/ext/{blas1.c → gsl_native/blas1.c} +35 -36
  93. data/ext/{blas2.c → gsl_native/blas2.c} +57 -62
  94. data/ext/{blas3.c → gsl_native/blas3.c} +57 -58
  95. data/ext/{block.c → gsl_native/block.c} +14 -18
  96. data/ext/{block_source.c → gsl_native/block_source.h} +110 -112
  97. data/ext/gsl_native/bspline.c +122 -0
  98. data/ext/{bundle.c → gsl_native/bundle.c} +0 -0
  99. data/ext/{cdf.c → gsl_native/cdf.c} +79 -93
  100. data/ext/{cheb.c → gsl_native/cheb.c} +78 -89
  101. data/ext/{combination.c → gsl_native/combination.c} +11 -19
  102. data/ext/{common.c → gsl_native/common.c} +9 -41
  103. data/ext/{complex.c → gsl_native/complex.c} +116 -118
  104. data/ext/gsl_native/const.c +331 -0
  105. data/ext/{const_additional.c → gsl_native/const_additional.c} +13 -34
  106. data/ext/gsl_native/cqp.c +283 -0
  107. data/ext/{deriv.c → gsl_native/deriv.c} +25 -33
  108. data/ext/{dht.c → gsl_native/dht.c} +23 -31
  109. data/ext/{diff.c → gsl_native/diff.c} +26 -28
  110. data/ext/{dirac.c → gsl_native/dirac.c} +45 -46
  111. data/ext/{eigen.c → gsl_native/eigen.c} +1044 -1095
  112. data/ext/{error.c → gsl_native/error.c} +18 -18
  113. data/ext/gsl_native/extconf.rb +118 -0
  114. data/ext/{fft.c → gsl_native/fft.c} +197 -204
  115. data/ext/{fit.c → gsl_native/fit.c} +17 -18
  116. data/ext/gsl_native/fresnel.c +312 -0
  117. data/ext/{function.c → gsl_native/function.c} +37 -43
  118. data/ext/{geometry.c → gsl_native/geometry.c} +16 -16
  119. data/ext/{graph.c → gsl_native/graph.c} +39 -89
  120. data/ext/{gsl.c → gsl_native/gsl.c} +12 -33
  121. data/ext/{gsl_narray.c → gsl_native/gsl_narray.c} +20 -30
  122. data/ext/{histogram.c → gsl_native/histogram.c} +133 -160
  123. data/ext/{histogram2d.c → gsl_native/histogram2d.c} +78 -104
  124. data/ext/{histogram3d.c → gsl_native/histogram3d.c} +76 -76
  125. data/ext/{histogram3d_source.c → gsl_native/histogram3d_source.c} +196 -197
  126. data/ext/{histogram_find.c → gsl_native/histogram_find.c} +32 -34
  127. data/ext/{histogram_oper.c → gsl_native/histogram_oper.c} +43 -52
  128. data/ext/{ieee.c → gsl_native/ieee.c} +9 -21
  129. data/{include → ext/gsl_native/include}/rb_gsl.h +4 -26
  130. data/{include → ext/gsl_native/include}/rb_gsl_array.h +15 -39
  131. data/{include → ext/gsl_native/include}/rb_gsl_cheb.h +0 -2
  132. data/{include → ext/gsl_native/include}/rb_gsl_common.h +61 -61
  133. data/{include → ext/gsl_native/include}/rb_gsl_complex.h +1 -1
  134. data/{include → ext/gsl_native/include}/rb_gsl_const.h +0 -6
  135. data/ext/gsl_native/include/rb_gsl_dirac.h +6 -0
  136. data/{include → ext/gsl_native/include}/rb_gsl_eigen.h +1 -1
  137. data/{include → ext/gsl_native/include}/rb_gsl_fft.h +0 -13
  138. data/{include → ext/gsl_native/include}/rb_gsl_fit.h +0 -2
  139. data/{include → ext/gsl_native/include}/rb_gsl_function.h +0 -4
  140. data/{include → ext/gsl_native/include}/rb_gsl_graph.h +2 -4
  141. data/{include → ext/gsl_native/include}/rb_gsl_histogram.h +8 -8
  142. data/{include → ext/gsl_native/include}/rb_gsl_histogram3d.h +50 -50
  143. data/{include → ext/gsl_native/include}/rb_gsl_integration.h +1 -1
  144. data/{include → ext/gsl_native/include}/rb_gsl_interp.h +0 -5
  145. data/{include → ext/gsl_native/include}/rb_gsl_linalg.h +2 -6
  146. data/{include → ext/gsl_native/include}/rb_gsl_math.h +0 -6
  147. data/{include → ext/gsl_native/include}/rb_gsl_odeiv.h +0 -3
  148. data/{include → ext/gsl_native/include}/rb_gsl_poly.h +3 -7
  149. data/{include → ext/gsl_native/include}/rb_gsl_rational.h +1 -8
  150. data/{include → ext/gsl_native/include}/rb_gsl_rng.h +0 -1
  151. data/{include → ext/gsl_native/include}/rb_gsl_root.h +1 -1
  152. data/{include → ext/gsl_native/include}/rb_gsl_sf.h +39 -48
  153. data/{include → ext/gsl_native/include}/rb_gsl_statistics.h +1 -1
  154. data/{include → ext/gsl_native/include}/rb_gsl_tensor.h +0 -2
  155. data/{include → ext/gsl_native/include}/rb_gsl_with_narray.h +3 -1
  156. data/{include → ext/gsl_native/include}/templates_off.h +0 -0
  157. data/{include → ext/gsl_native/include}/templates_on.h +1 -1
  158. data/ext/{integration.c → gsl_native/integration.c} +164 -189
  159. data/ext/{interp.c → gsl_native/interp.c} +25 -38
  160. data/ext/gsl_native/jacobi.c +733 -0
  161. data/ext/{linalg.c → gsl_native/linalg.c} +462 -589
  162. data/ext/{linalg_complex.c → gsl_native/linalg_complex.c} +93 -106
  163. data/ext/{math.c → gsl_native/math.c} +48 -67
  164. data/ext/{matrix.c → gsl_native/matrix.c} +13 -16
  165. data/ext/{matrix_complex.c → gsl_native/matrix_complex.c} +119 -123
  166. data/ext/{matrix_double.c → gsl_native/matrix_double.c} +79 -82
  167. data/ext/{matrix_int.c → gsl_native/matrix_int.c} +53 -54
  168. data/ext/{matrix_source.c → gsl_native/matrix_source.h} +292 -318
  169. data/ext/{min.c → gsl_native/min.c} +45 -76
  170. data/ext/{monte.c → gsl_native/monte.c} +50 -64
  171. data/ext/{multifit.c → gsl_native/multifit.c} +142 -151
  172. data/ext/{multimin.c → gsl_native/multimin.c} +64 -92
  173. data/ext/{multimin_fsdf.c → gsl_native/multimin_fsdf.c} +16 -16
  174. data/ext/{multiroots.c → gsl_native/multiroots.c} +73 -76
  175. data/ext/{multiset.c → gsl_native/multiset.c} +4 -8
  176. data/ext/{ndlinear.c → gsl_native/ndlinear.c} +320 -321
  177. data/ext/{nmf.c → gsl_native/nmf.c} +11 -11
  178. data/ext/{nmf_wrap.c → gsl_native/nmf_wrap.c} +1 -1
  179. data/ext/{ntuple.c → gsl_native/ntuple.c} +23 -23
  180. data/ext/{odeiv.c → gsl_native/odeiv.c} +101 -116
  181. data/ext/gsl_native/ool.c +879 -0
  182. data/ext/{permutation.c → gsl_native/permutation.c} +39 -37
  183. data/ext/{poly.c → gsl_native/poly.c} +10 -13
  184. data/ext/{poly2.c → gsl_native/poly2.c} +16 -16
  185. data/ext/{poly_source.c → gsl_native/poly_source.h} +249 -293
  186. data/ext/{qrng.c → gsl_native/qrng.c} +9 -20
  187. data/ext/{randist.c → gsl_native/randist.c} +222 -247
  188. data/ext/{rational.c → gsl_native/rational.c} +12 -12
  189. data/ext/{rng.c → gsl_native/rng.c} +30 -47
  190. data/ext/{root.c → gsl_native/root.c} +47 -48
  191. data/ext/{sf.c → gsl_native/sf.c} +196 -244
  192. data/ext/{sf_airy.c → gsl_native/sf_airy.c} +2 -2
  193. data/ext/{sf_bessel.c → gsl_native/sf_bessel.c} +7 -7
  194. data/ext/{sf_clausen.c → gsl_native/sf_clausen.c} +1 -1
  195. data/ext/{sf_coulomb.c → gsl_native/sf_coulomb.c} +40 -40
  196. data/ext/{sf_coupling.c → gsl_native/sf_coupling.c} +30 -30
  197. data/ext/{sf_dawson.c → gsl_native/sf_dawson.c} +1 -1
  198. data/ext/{sf_debye.c → gsl_native/sf_debye.c} +1 -10
  199. data/ext/{sf_dilog.c → gsl_native/sf_dilog.c} +1 -1
  200. data/ext/{sf_elementary.c → gsl_native/sf_elementary.c} +3 -3
  201. data/ext/{sf_ellint.c → gsl_native/sf_ellint.c} +43 -43
  202. data/ext/{sf_elljac.c → gsl_native/sf_elljac.c} +3 -3
  203. data/ext/{sf_erfc.c → gsl_native/sf_erfc.c} +1 -5
  204. data/ext/{sf_exp.c → gsl_native/sf_exp.c} +3 -3
  205. data/ext/{sf_expint.c → gsl_native/sf_expint.c} +2 -12
  206. data/ext/{sf_fermi_dirac.c → gsl_native/sf_fermi_dirac.c} +1 -1
  207. data/ext/{sf_gamma.c → gsl_native/sf_gamma.c} +2 -6
  208. data/ext/{sf_gegenbauer.c → gsl_native/sf_gegenbauer.c} +1 -1
  209. data/ext/{sf_hyperg.c → gsl_native/sf_hyperg.c} +1 -1
  210. data/ext/{sf_laguerre.c → gsl_native/sf_laguerre.c} +4 -4
  211. data/ext/{sf_lambert.c → gsl_native/sf_lambert.c} +1 -1
  212. data/ext/{sf_legendre.c → gsl_native/sf_legendre.c} +1 -1
  213. data/ext/{sf_log.c → gsl_native/sf_log.c} +4 -4
  214. data/ext/gsl_native/sf_mathieu.c +235 -0
  215. data/ext/{sf_power.c → gsl_native/sf_power.c} +1 -1
  216. data/ext/{sf_psi.c → gsl_native/sf_psi.c} +3 -12
  217. data/ext/{sf_synchrotron.c → gsl_native/sf_synchrotron.c} +1 -1
  218. data/ext/{sf_transport.c → gsl_native/sf_transport.c} +1 -1
  219. data/ext/{sf_trigonometric.c → gsl_native/sf_trigonometric.c} +4 -4
  220. data/ext/{sf_zeta.c → gsl_native/sf_zeta.c} +1 -5
  221. data/ext/{signal.c → gsl_native/signal.c} +63 -68
  222. data/ext/{siman.c → gsl_native/siman.c} +45 -49
  223. data/ext/{sort.c → gsl_native/sort.c} +6 -7
  224. data/ext/{spline.c → gsl_native/spline.c} +28 -46
  225. data/ext/{stats.c → gsl_native/stats.c} +105 -118
  226. data/ext/{sum.c → gsl_native/sum.c} +34 -34
  227. data/ext/{tamu_anova.c → gsl_native/tamu_anova.c} +1 -1
  228. data/ext/{tensor.c → gsl_native/tensor.c} +8 -11
  229. data/ext/{tensor_source.c → gsl_native/tensor_source.h} +147 -148
  230. data/ext/{vector.c → gsl_native/vector.c} +11 -14
  231. data/ext/{vector_complex.c → gsl_native/vector_complex.c} +179 -184
  232. data/ext/{vector_double.c → gsl_native/vector_double.c} +178 -183
  233. data/ext/{vector_int.c → gsl_native/vector_int.c} +27 -29
  234. data/ext/{vector_source.c → gsl_native/vector_source.h} +428 -443
  235. data/ext/{wavelet.c → gsl_native/wavelet.c} +224 -246
  236. data/gsl.gemspec +29 -0
  237. data/lib/gsl.rb +8 -3
  238. data/lib/gsl/gnuplot.rb +3 -3
  239. data/lib/gsl/oper.rb +35 -60
  240. data/lib/gsl/version.rb +3 -0
  241. data/lib/rbgsl.rb +1 -3
  242. data/rdoc/alf.rdoc +5 -5
  243. data/rdoc/blas.rdoc +9 -9
  244. data/rdoc/bspline.rdoc +17 -17
  245. data/rdoc/changes.rdoc +4 -9
  246. data/rdoc/cheb.rdoc +25 -25
  247. data/rdoc/cholesky_complex.rdoc +21 -21
  248. data/rdoc/combi.rdoc +37 -37
  249. data/rdoc/complex.rdoc +22 -22
  250. data/rdoc/const.rdoc +47 -47
  251. data/rdoc/dht.rdoc +49 -49
  252. data/rdoc/diff.rdoc +42 -42
  253. data/rdoc/ehandling.rdoc +6 -6
  254. data/rdoc/eigen.rdoc +153 -153
  255. data/rdoc/fft.rdoc +146 -146
  256. data/rdoc/fit.rdoc +109 -109
  257. data/rdoc/function.rdoc +11 -11
  258. data/rdoc/graph.rdoc +17 -17
  259. data/rdoc/hist.rdoc +103 -103
  260. data/rdoc/hist2d.rdoc +42 -42
  261. data/rdoc/hist3d.rdoc +9 -9
  262. data/rdoc/integration.rdoc +110 -110
  263. data/rdoc/interp.rdoc +71 -71
  264. data/rdoc/intro.rdoc +8 -8
  265. data/rdoc/linalg.rdoc +188 -188
  266. data/rdoc/linalg_complex.rdoc +1 -1
  267. data/rdoc/math.rdoc +58 -58
  268. data/rdoc/matrix.rdoc +275 -275
  269. data/rdoc/min.rdoc +57 -57
  270. data/rdoc/monte.rdoc +22 -22
  271. data/rdoc/multimin.rdoc +95 -95
  272. data/rdoc/multiroot.rdoc +80 -80
  273. data/rdoc/narray.rdoc +32 -32
  274. data/rdoc/ndlinear.rdoc +54 -54
  275. data/rdoc/nonlinearfit.rdoc +100 -100
  276. data/rdoc/ntuple.rdoc +31 -31
  277. data/rdoc/odeiv.rdoc +88 -88
  278. data/rdoc/perm.rdoc +90 -90
  279. data/rdoc/poly.rdoc +66 -66
  280. data/rdoc/qrng.rdoc +21 -21
  281. data/rdoc/randist.rdoc +82 -82
  282. data/rdoc/ref.rdoc +57 -57
  283. data/rdoc/rng.rdoc +85 -85
  284. data/rdoc/roots.rdoc +57 -57
  285. data/rdoc/sf.rdoc +428 -428
  286. data/rdoc/siman.rdoc +19 -19
  287. data/rdoc/sort.rdoc +30 -30
  288. data/rdoc/start.rdoc +8 -8
  289. data/rdoc/stats.rdoc +52 -52
  290. data/rdoc/sum.rdoc +12 -12
  291. data/rdoc/tensor.rdoc +31 -31
  292. data/rdoc/tut.rdoc +1 -1
  293. data/rdoc/use.rdoc +39 -39
  294. data/rdoc/vector.rdoc +188 -188
  295. data/rdoc/vector_complex.rdoc +24 -24
  296. data/rdoc/wavelet.rdoc +46 -46
  297. data/test/gsl/blas_test.rb +79 -0
  298. data/test/gsl/bspline_test.rb +63 -0
  299. data/test/gsl/cdf_test.rb +1512 -0
  300. data/test/gsl/cheb_test.rb +80 -0
  301. data/test/gsl/combination_test.rb +100 -0
  302. data/test/gsl/complex_test.rb +20 -0
  303. data/test/gsl/const_test.rb +29 -0
  304. data/test/gsl/deriv_test.rb +62 -0
  305. data/test/gsl/dht_test.rb +79 -0
  306. data/test/gsl/diff_test.rb +53 -0
  307. data/test/gsl/eigen_test.rb +563 -0
  308. data/test/gsl/err_test.rb +23 -0
  309. data/test/gsl/fit_test.rb +101 -0
  310. data/test/gsl/histo_test.rb +14 -0
  311. data/test/gsl/index_test.rb +61 -0
  312. data/test/gsl/integration_test.rb +274 -0
  313. data/test/gsl/interp_test.rb +27 -0
  314. data/test/gsl/linalg_test.rb +463 -0
  315. data/test/gsl/matrix_nmf_test.rb +37 -0
  316. data/test/gsl/matrix_test.rb +98 -0
  317. data/test/gsl/min_test.rb +89 -0
  318. data/test/gsl/monte_test.rb +77 -0
  319. data/test/gsl/multifit_test.rb +753 -0
  320. data/test/gsl/multimin_test.rb +157 -0
  321. data/test/gsl/multiroot_test.rb +135 -0
  322. data/test/gsl/multiset_test.rb +52 -0
  323. data/test/gsl/odeiv_test.rb +275 -0
  324. data/test/gsl/oper_test.rb +98 -0
  325. data/test/gsl/poly_test.rb +338 -0
  326. data/test/gsl/qrng_test.rb +94 -0
  327. data/test/gsl/quartic_test.rb +28 -0
  328. data/test/gsl/randist_test.rb +122 -0
  329. data/test/gsl/rng_test.rb +303 -0
  330. data/test/gsl/roots_test.rb +78 -0
  331. data/test/gsl/sf_test.rb +2079 -0
  332. data/test/gsl/stats_test.rb +122 -0
  333. data/test/gsl/sum_test.rb +69 -0
  334. data/test/gsl/tensor_test.rb +396 -0
  335. data/test/gsl/vector_test.rb +223 -0
  336. data/test/gsl/wavelet_test.rb +130 -0
  337. data/test/gsl_test.rb +321 -0
  338. data/test/test_helper.rb +42 -0
  339. data/uncrustify.cfg +1693 -0
  340. metadata +337 -378
  341. data/README +0 -32
  342. data/VERSION +0 -1
  343. data/ext/bspline.c +0 -130
  344. data/ext/const.c +0 -673
  345. data/ext/cqp.c +0 -283
  346. data/ext/extconf.rb +0 -295
  347. data/ext/fcmp.c +0 -66
  348. data/ext/fresnel.c +0 -312
  349. data/ext/jacobi.c +0 -739
  350. data/ext/ool.c +0 -879
  351. data/ext/oper_complex_source.c +0 -253
  352. data/ext/sf_mathieu.c +0 -238
  353. data/include/rb_gsl_config.h +0 -62
  354. data/include/rb_gsl_dirac.h +0 -13
  355. data/rdoc/index.rdoc +0 -62
  356. data/rdoc/rngextra.rdoc +0 -11
  357. data/rdoc/screenshot.rdoc +0 -40
  358. data/setup.rb +0 -1585
  359. data/tests/blas/amax.rb +0 -14
  360. data/tests/blas/asum.rb +0 -16
  361. data/tests/blas/axpy.rb +0 -25
  362. data/tests/blas/copy.rb +0 -23
  363. data/tests/blas/dot.rb +0 -23
  364. data/tests/bspline.rb +0 -53
  365. data/tests/cdf.rb +0 -1388
  366. data/tests/cheb.rb +0 -112
  367. data/tests/combination.rb +0 -123
  368. data/tests/complex.rb +0 -17
  369. data/tests/const.rb +0 -24
  370. data/tests/deriv.rb +0 -85
  371. data/tests/dht/dht1.rb +0 -17
  372. data/tests/dht/dht2.rb +0 -23
  373. data/tests/dht/dht3.rb +0 -23
  374. data/tests/dht/dht4.rb +0 -23
  375. data/tests/diff.rb +0 -78
  376. data/tests/eigen/eigen.rb +0 -220
  377. data/tests/eigen/gen.rb +0 -105
  378. data/tests/eigen/genherm.rb +0 -66
  379. data/tests/eigen/gensymm.rb +0 -68
  380. data/tests/eigen/nonsymm.rb +0 -53
  381. data/tests/eigen/nonsymmv.rb +0 -53
  382. data/tests/eigen/symm-herm.rb +0 -74
  383. data/tests/err.rb +0 -58
  384. data/tests/fit.rb +0 -124
  385. data/tests/gsl_test.rb +0 -118
  386. data/tests/gsl_test2.rb +0 -110
  387. data/tests/histo.rb +0 -12
  388. data/tests/integration/integration1.rb +0 -72
  389. data/tests/integration/integration2.rb +0 -71
  390. data/tests/integration/integration3.rb +0 -71
  391. data/tests/integration/integration4.rb +0 -71
  392. data/tests/interp.rb +0 -45
  393. data/tests/linalg/HH.rb +0 -64
  394. data/tests/linalg/LU.rb +0 -47
  395. data/tests/linalg/QR.rb +0 -77
  396. data/tests/linalg/SV.rb +0 -24
  397. data/tests/linalg/TDN.rb +0 -116
  398. data/tests/linalg/TDS.rb +0 -122
  399. data/tests/linalg/bidiag.rb +0 -73
  400. data/tests/linalg/cholesky.rb +0 -20
  401. data/tests/linalg/linalg.rb +0 -158
  402. data/tests/matrix/matrix_complex_test.rb +0 -36
  403. data/tests/matrix/matrix_nmf_test.rb +0 -39
  404. data/tests/matrix/matrix_test.rb +0 -48
  405. data/tests/min.rb +0 -99
  406. data/tests/monte/miser.rb +0 -31
  407. data/tests/monte/vegas.rb +0 -45
  408. data/tests/multifit/test_2dgauss.rb +0 -112
  409. data/tests/multifit/test_brown.rb +0 -90
  410. data/tests/multifit/test_enso.rb +0 -246
  411. data/tests/multifit/test_filip.rb +0 -155
  412. data/tests/multifit/test_gauss.rb +0 -97
  413. data/tests/multifit/test_longley.rb +0 -110
  414. data/tests/multifit/test_multifit.rb +0 -52
  415. data/tests/multimin.rb +0 -139
  416. data/tests/multiroot.rb +0 -131
  417. data/tests/multiset.rb +0 -52
  418. data/tests/narray/blas_dnrm2.rb +0 -20
  419. data/tests/odeiv.rb +0 -353
  420. data/tests/poly/poly.rb +0 -290
  421. data/tests/poly/special.rb +0 -65
  422. data/tests/qrng.rb +0 -131
  423. data/tests/quartic.rb +0 -29
  424. data/tests/randist.rb +0 -134
  425. data/tests/rng.rb +0 -305
  426. data/tests/roots.rb +0 -76
  427. data/tests/run-test.sh +0 -17
  428. data/tests/sf/gsl_test_sf.rb +0 -249
  429. data/tests/sf/test_airy.rb +0 -83
  430. data/tests/sf/test_bessel.rb +0 -306
  431. data/tests/sf/test_coulomb.rb +0 -17
  432. data/tests/sf/test_dilog.rb +0 -25
  433. data/tests/sf/test_gamma.rb +0 -209
  434. data/tests/sf/test_hyperg.rb +0 -356
  435. data/tests/sf/test_legendre.rb +0 -227
  436. data/tests/sf/test_mathieu.rb +0 -59
  437. data/tests/sf/test_mode.rb +0 -19
  438. data/tests/sf/test_sf.rb +0 -839
  439. data/tests/stats.rb +0 -174
  440. data/tests/stats_mt.rb +0 -16
  441. data/tests/sum.rb +0 -98
  442. data/tests/sys.rb +0 -323
  443. data/tests/tensor.rb +0 -419
  444. data/tests/vector/vector_complex_test.rb +0 -101
  445. data/tests/vector/vector_test.rb +0 -141
  446. data/tests/wavelet.rb +0 -142
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # = GSL::Histogram2d class
3
3
  #
4
- # == {}[link:index.html"name="1] Class methods
4
+ # == Class methods
5
5
  # ---
6
6
  # * GSL::Histogram2d.alloc(nx, ny)
7
7
  # * GSL::Histogram2d.alloc(xrange, yrange)
@@ -13,13 +13,13 @@
13
13
  # 1. With sizes
14
14
  # >> h2 = GSL::Histogram2d.alloc(2, 3) # size 6
15
15
  # >> h2.xrange
16
- # => GSL::Histogram::Range:
16
+ # => GSL::Histogram::Range:
17
17
  # [ 0.000e+00 1.000e+00 2.000e+00 ]
18
18
  # >> h2.yrange
19
- # => GSL::Histogram::Range:
19
+ # => GSL::Histogram::Range:
20
20
  # [ 0.000e+00 1.000e+00 2.000e+00 3.000e+00 ]
21
21
  # >> h2.bin
22
- # => GSL::Histogram::Bin:
22
+ # => GSL::Histogram::Bin:
23
23
  # [ 0.000e+00 0.000e+00 0.000e+00 0.000e+00 0.000e+00 0.000e+00 ]
24
24
  # >> h2.xrange.class.superclass
25
25
  # => GSL::Vector::View::ReadOnly
@@ -29,22 +29,22 @@
29
29
  # 1. With ranges
30
30
  # >> h2 = Histogram2d.alloc([3, 6, 7], [2, 3, 8])
31
31
  # >> h2.xrange
32
- # => GSL::Histogram::Range:
32
+ # => GSL::Histogram::Range:
33
33
  # [ 3.000e+00 6.000e+00 7.000e+00 ]
34
34
  # >> h2.yrange
35
- # => GSL::Histogram::Range:
35
+ # => GSL::Histogram::Range:
36
36
  # [ 2.000e+00 3.000e+00 8.000e+00 ]
37
37
  # >> h2.bin
38
- # => GSL::Histogram::Bin:
38
+ # => GSL::Histogram::Bin:
39
39
  # [ 0.000e+00 0.000e+00 0.000e+00 0.000e+00 ]
40
40
  #
41
41
  # 1. With sizes and ranges
42
42
  # >> h2 = Histogram2d.alloc(4, [0, 4], 3, [1, 5])
43
43
  # >> h2.xrange
44
- # => GSL::Histogram::Range:
44
+ # => GSL::Histogram::Range:
45
45
  # [ 0.000e+00 1.000e+00 2.000e+00 3.000e+00 4.000e+00 ]
46
46
  # >> h2.yrange
47
- # => GSL::Histogram::Range:
47
+ # => GSL::Histogram::Range:
48
48
  # [ 1.000e+00 2.333e+00 3.667e+00 5.000e+00 ]
49
49
  #
50
50
  # ---
@@ -52,25 +52,25 @@
52
52
  # * GSL::Histogram2d.equal_bins_p(h1, h2)
53
53
  #
54
54
  #
55
- # == {}[link:index.html"name="2] Methods
55
+ # == Methods
56
56
  # ---
57
57
  # * GSL::Histogram2d#set_ranges(vx, vy)
58
58
  #
59
- # This sets the ranges of the existing histogram using
60
- # two {GSL::Vector}[link:files/rdoc/vector_rdoc.html] objects or arrays.
59
+ # This sets the ranges of the existing histogram using
60
+ # two {GSL::Vector}[link:rdoc/vector_rdoc.html] objects or arrays.
61
61
  # ---
62
62
  # * GSL::Histogram2d#set_ranges_uniform(xmin, xmax, ymin, ymax)
63
63
  # * GSL::Histogram2d#set_ranges_uniform([xmin, xmax], [ymin, ymax])
64
64
  #
65
- # This sets the ranges of the existing histogram <tt>self</tt> to cover
66
- # the ranges <tt>xmin</tt> to <tt>xmax</tt> and <tt>ymin</tt> to <tt>ymax</tt> uniformly.
65
+ # This sets the ranges of the existing histogram <tt>self</tt> to cover
66
+ # the ranges <tt>xmin</tt> to <tt>xmax</tt> and <tt>ymin</tt> to <tt>ymax</tt> uniformly.
67
67
  # The values of the histogram bins are reset to zero.
68
68
  #
69
69
  # ---
70
70
  # * GSL::Histogram2d#clone
71
71
  # * GSL::Histogram2d#duplicate
72
72
  #
73
- # Returns a newly created histogram which is an exact copy of the
73
+ # Returns a newly created histogram which is an exact copy of the
74
74
  # histogram <tt>self</tt>.
75
75
  #
76
76
  # ---
@@ -78,10 +78,10 @@
78
78
  # * GSL::Histogram2d#accumulate(x, y, weight = 1)
79
79
  # * GSL::Histogram2d#fill(x, y, weight = 1)
80
80
  #
81
- # These method update the histogram <tt>self</tt> by adding <tt>weight</tt>
81
+ # These method update the histogram <tt>self</tt> by adding <tt>weight</tt>
82
82
  # to the bin whose <tt>x</tt> and <tt>y</tt> ranges contain the coordinates (x,y).
83
- # If (x,y) lies outside the limits of the histogram then none of the
84
- # bins are modified.
83
+ # If (x,y) lies outside the limits of the histogram then none of the
84
+ # bins are modified.
85
85
  #
86
86
  # ---
87
87
  # * GSL::Histogram2d#increment2(x, y, weight = 1)
@@ -97,16 +97,16 @@
97
97
  # * GSL::Histogram2d#get([i, j])
98
98
  # * GSL::Histogram2d#[i, j]
99
99
  #
100
- # Return the contents of the <tt>(i,j)</tt>-th bin of the histogram <tt>self</tt>.
100
+ # Return the contents of the <tt>(i,j)</tt>-th bin of the histogram <tt>self</tt>.
101
101
  #
102
102
  # ---
103
103
  # * GSL::Histogram2d#get_xrange(i)
104
104
  # * GSL::Histogram2d#get_yrange(j)
105
105
  #
106
- # These methods find the upper and lower range limits of the <tt>i</tt>-th
106
+ # These methods find the upper and lower range limits of the <tt>i</tt>-th
107
107
  # and <tt>j</tt>-th bins in the x and y directions of the histogram <tt>self</tt>.
108
108
  #
109
- # Ex:
109
+ # Ex:
110
110
  # >> h2 = Histogram2d.alloc(2, [0, 2], 3, [1, 4])
111
111
  # >> h2.get_xrange(1)
112
112
  # => [1.0, 2.0]
@@ -127,7 +127,7 @@
127
127
  # * GSL::Histogram2d#nx
128
128
  # * GSL::Histogram2d#ny
129
129
  #
130
- # These methodss return the maximum upper and minimum lower range limits
130
+ # These methodss return the maximum upper and minimum lower range limits
131
131
  # and the number of bins for the x and y directions of the histogram <tt>self</tt>.
132
132
  #
133
133
  # ---
@@ -138,7 +138,7 @@
138
138
  # ---
139
139
  # * GSL::Histogram2d#find(x, y)
140
140
  #
141
- # Finds the indices i and j to the to the bin which covers the
141
+ # Finds the indices i and j to the to the bin which covers the
142
142
  # coordinates (<tt>x,y</tt>).
143
143
  #
144
144
  # ---
@@ -149,7 +149,7 @@
149
149
  # ---
150
150
  # * GSL::Histogram2d#max_bin
151
151
  #
152
- # Returns the indices (i,j) of the bin containing the maximum value in
152
+ # Returns the indices (i,j) of the bin containing the maximum value in
153
153
  # the histogram <tt>self</tt>.
154
154
  #
155
155
  # ---
@@ -165,36 +165,36 @@
165
165
  # ---
166
166
  # * GSL::Histogram2d#xmean
167
167
  #
168
- # Returns the mean of the histogrammed x variable, where the histogram
169
- # is regarded as a probability distribution.
168
+ # Returns the mean of the histogrammed x variable, where the histogram
169
+ # is regarded as a probability distribution.
170
170
  # Negative bin values are ignored for the purposes of this calculation.
171
171
  #
172
172
  # ---
173
173
  # * GSL::Histogram2d#xsigma
174
174
  #
175
- # Returns the standard deviation of the histogrammed x variable,
176
- # where the histogram is regarded as a probability distribution.
175
+ # Returns the standard deviation of the histogrammed x variable,
176
+ # where the histogram is regarded as a probability distribution.
177
177
  # Negative bin values are ignored for the purposes of this calculation.
178
178
  #
179
179
  # ---
180
180
  # * GSL::Histogram2d#ymean
181
181
  #
182
- # Returns the mean of the histogrammed y variable, where the histogram
183
- # is regarded as a probability distribution. Negative bin values are
182
+ # Returns the mean of the histogrammed y variable, where the histogram
183
+ # is regarded as a probability distribution. Negative bin values are
184
184
  # ignored for the purposes of this calculation.
185
185
  #
186
186
  # ---
187
187
  # * GSL::Histogram2d#ysigma
188
188
  #
189
- # Returns the standard deviation of the histogrammed y variable,
190
- # where the histogram is regarded as a probability distribution.
189
+ # Returns the standard deviation of the histogrammed y variable,
190
+ # where the histogram is regarded as a probability distribution.
191
191
  # Negative bin values are ignored for the purposes of this calculation.
192
192
  #
193
193
  # ---
194
194
  # * GSL::Histogram2d#cov
195
195
  #
196
- # Returns the covariance of the histogrammed x and y variables,
197
- # where the histogram is regarded as a probability distribution.
196
+ # Returns the covariance of the histogrammed x and y variables,
197
+ # where the histogram is regarded as a probability distribution.
198
198
  # Negative bin values are ignored for the purposes of this calculation.
199
199
  #
200
200
  # ---
@@ -222,16 +222,16 @@
222
222
  # ---
223
223
  # * GSL::Histogram2d#xproject(jstart = 0, jend = ny-1)
224
224
  #
225
- # Creates a <tt>GSL::Histogram</tt> object by projecting the 2D histogram
225
+ # Creates a <tt>GSL::Histogram</tt> object by projecting the 2D histogram
226
226
  # <tt>self</tt> onto the x-axis over the y-range from <tt>jstart</tt> to <tt>jend</tt>.
227
227
  #
228
228
  # ---
229
229
  # * GSL::Histogram2d#yproject(istart = 0, iend = nx-1)
230
230
  #
231
- # Creates a <tt>GSL::Histogram</tt> object by projecting the 2D histogram
231
+ # Creates a <tt>GSL::Histogram</tt> object by projecting the 2D histogram
232
232
  # <tt>self</tt> onto the y-axis over the x-range from <tt>istart</tt> to <tt>iend</tt>.
233
233
  #
234
- # == {}[link:index.html"name="3] GSL::Histogram2d::Pdf class
234
+ # == Pdf class
235
235
  # ---
236
236
  # * GSL::Histogram2d::Pdf.alloc(nx, ny)
237
237
  #
@@ -246,7 +246,7 @@
246
246
  # * GSL::Histogram2d::Pdf#sample(r1, r2)
247
247
  #
248
248
  #
249
- # == {}[link:index.html"name="4] Example
249
+ # == Example
250
250
  # #!/usr/bin/env ruby
251
251
  # require("gsl")
252
252
  #
@@ -271,9 +271,9 @@
271
271
  # GSL::graph(hx, hy, "-T X -C -g 3")
272
272
  #
273
273
  #
274
- # {prev}[link:files/rdoc/hist_rdoc.html]
275
- # {next}[link:files/rdoc/hist3d_rdoc.html]
274
+ # {prev}[link:rdoc/hist_rdoc.html]
275
+ # {next}[link:rdoc/hist3d_rdoc.html]
276
276
  #
277
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
278
- # {top}[link:files/rdoc/index_rdoc.html]
277
+ # {Reference index}[link:rdoc/ref_rdoc.html]
278
+ # {top}[link:index.html]
279
279
  #
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # = GSL::Histogram3d class
3
3
  #
4
- # == {}[link:index.html"name="1] Class methods
4
+ # == Class methods
5
5
  # ---
6
6
  # * GSL::Histogram3d.alloc(nx, ny, nz)
7
7
  # * GSL::Histogram3d.alloc(xrange, yrange, zrange)
@@ -16,7 +16,7 @@
16
16
  # * GSL::Histogram3d.equal_bins_?p(h1, h2)
17
17
  #
18
18
  #
19
- # == {}[link:index.html"name="2] Methods
19
+ # == Methods
20
20
  # ---
21
21
  # * GSL::Histogram3d#set_ranges(xrange, yrange, zrange)
22
22
  # * GSL::Histogram3d#set_ranges_uniform(xmin, xmax, ymin, ymax, zmin, zmax)
@@ -89,24 +89,24 @@
89
89
  # ---
90
90
  # * GSL::Histogram3d#xyproject(kstart = 0, kend = nz-1)
91
91
  #
92
- # Creates a <tt>GSL::Histogram2d</tt> object by projecting the 3D histogram
92
+ # Creates a <tt>GSL::Histogram2d</tt> object by projecting the 3D histogram
93
93
  # <tt>self</tt> onto the xy-plane over the z-range from <tt>kstart</tt> to <tt>kend</tt>.
94
94
  #
95
95
  # ---
96
96
  # * GSL::Histogram3d#xzproject(jstart = 0, jend = ny-1)
97
97
  #
98
- # Creates a <tt>GSL::Histogram2d</tt> object by projecting the 3D histogram
98
+ # Creates a <tt>GSL::Histogram2d</tt> object by projecting the 3D histogram
99
99
  # <tt>self</tt> onto the xz-plane over the y-range from <tt>jstart</tt> to <tt>jend</tt>.
100
100
  #
101
101
  # ---
102
102
  # * GSL::Histogram3d#yzproject(istart = 0, iend = nx-1)
103
103
  #
104
- # Creates a <tt>GSL::Histogram2d</tt> object by projecting the 3D histogram
104
+ # Creates a <tt>GSL::Histogram2d</tt> object by projecting the 3D histogram
105
105
  # <tt>self</tt> onto the yz-plane over the x-range from <tt>istart</tt> to <tt>iend</tt>.
106
106
  #
107
- # {prev}[link:files/rdoc/hist2d_rdoc.html]
108
- # {next}[link:files/rdoc/ntuple_rdoc.html]
107
+ # {prev}[link:rdoc/hist2d_rdoc.html]
108
+ # {next}[link:rdoc/ntuple_rdoc.html]
109
109
  #
110
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
111
- # {top}[link:files/rdoc/index_rdoc.html]
110
+ # {Reference index}[link:rdoc/ref_rdoc.html]
111
+ # {top}[link:index.html]
112
112
  #
@@ -1,46 +1,46 @@
1
1
  #
2
2
  # = Numerical Integration
3
3
  # Contents:
4
- # 1. {Introduction}[link:files/rdoc/integration_rdoc.html#1]
5
- # 1. {QNG non-adaptive Gauss-Kronrod integration}[link:files/rdoc/integration_rdoc.html#2]
6
- # 1. {QAG adaptive integration}[link:files/rdoc/integration_rdoc.html#3]
7
- # 1. {GSL::Integration::Workspace class}[link:files/rdoc/integration_rdoc.html#3.1]
8
- # 1. {Methods}[link:files/rdoc/integration_rdoc.html#3.2]
9
- # 1. {QAGS adaptive integration with singularities}[link:files/rdoc/integration_rdoc.html#4]
10
- # 1. {QAGP adaptive integration with known singular points}[link:files/rdoc/integration_rdoc.html#5]
11
- # 1. {QAGI adaptive integration on infinite intervals}[link:files/rdoc/integration_rdoc.html#6]
12
- # 1. {QAWC adaptive integration for Cauchy principal values}[link:files/rdoc/integration_rdoc.html#7]
13
- # 1. {QAWS adaptive integration for singular functions}[link:files/rdoc/integration_rdoc.html#8]
14
- # 1. {QAWO adaptive integration for oscillatory functions}[link:files/rdoc/integration_rdoc.html#9]
15
- # 1. {QAWF adaptive integration for Fourier integrals}[link:files/rdoc/integration_rdoc.html#10]
16
- #
17
- # == {}[link:index.html"name="1] Introduction
18
- # This section describes how to compute numerical integration of a function
19
- # in one dimension. In Ruby/GSL, all the GSL routines for numerical integration
20
- # is provided as methods of {GSL::Function}[link:files/rdoc/function_rdoc.html] objects.
21
- # For example, a <tt>GSL::Function</tt> object which represents the sine function
4
+ # 1. {Introduction}[link:rdoc/integration_rdoc.html#label-Introduction]
5
+ # 1. {QNG non-adaptive Gauss-Kronrod integration}[link:rdoc/integration_rdoc.html#label-QNG+non-adaptive+Gauss-Kronrod+integration]
6
+ # 1. {QAG adaptive integration}[link:rdoc/integration_rdoc.html#label-QAG+adaptive+integration]
7
+ # 1. {GSL::Integration::Workspace class}[link:rdoc/integration_rdoc.html#label-Workspace+class]
8
+ # 1. {Methods}[link:rdoc/integration_rdoc.html#label-Methods]
9
+ # 1. {QAGS adaptive integration with singularities}[link:rdoc/integration_rdoc.html#label-QAGS+adaptive+integration+with+singularities]
10
+ # 1. {QAGP adaptive integration with known singular points}[link:rdoc/integration_rdoc.html#label-QAGP+adaptive+integration+with+known+singular+points]
11
+ # 1. {QAGI adaptive integration on infinite intervals}[link:rdoc/integration_rdoc.html#label-QAGI+adaptive+integration+on+infinite+intervals]
12
+ # 1. {QAWC adaptive integration for Cauchy principal values}[link:rdoc/integration_rdoc.html#label-QAWC+adaptive+integration+for+Cauchy+principal+values]
13
+ # 1. {QAWS adaptive integration for singular functions}[link:rdoc/integration_rdoc.html#label-QAWS+adaptive+integration+for+singular+functions]
14
+ # 1. {QAWO adaptive integration for oscillatory functions}[link:rdoc/integration_rdoc.html#label-QAWO+adaptive+integration+for+oscillatory+functions]
15
+ # 1. {QAWF adaptive integration for Fourier integrals}[link:rdoc/integration_rdoc.html#label-QAWF+adaptive+integration+for+Fourier+integrals]
16
+ #
17
+ # == Introduction
18
+ # This section describes how to compute numerical integration of a function
19
+ # in one dimension. In Ruby/GSL, all the GSL routines for numerical integration
20
+ # is provided as methods of {GSL::Function}[link:rdoc/function_rdoc.html] objects.
21
+ # For example, a <tt>GSL::Function</tt> object which represents the sine function
22
22
  # <tt>sin(x)</tt> can be expressed as
23
23
  # f = GSL::Function.alloc { |x| sin(x) }
24
- # To compute numerical integration of <tt>sin(x)</tt> over the range <tt>(a, b)</tt>,
24
+ # To compute numerical integration of <tt>sin(x)</tt> over the range <tt>(a, b)</tt>,
25
25
  # one can use the methods <tt>integrate_xxx</tt> or simply <tt>xxx</tt>, as
26
26
  # * <tt>f.integrate_xxx([a, b])</tt>, or <tt>f.xxx([a, b])</tt>
27
27
  # * <tt>f.integrate_xxx(a, b)</tt>, or <tt>f.xxx(a, b)</tt>
28
28
  #
29
- # == {}[link:index.html"name="2] QNG non-adaptive Gauss-Kronrod integration
29
+ # == QNG non-adaptive Gauss-Kronrod integration
30
30
  # ---
31
31
  # * GSL::Function#integration_qng([a, b], [epsabs = 0.0, epsrel = 1e-10])
32
32
  # * GSL::Function#qng(...)
33
33
  # * GSL::Integration::qng(...)
34
34
  #
35
- # These methods apply the Gauss-Kronrod integration rules in succession until
36
- # an estimate of the integral of the reciever function (a <tt>GSL::Function</tt>
37
- # object) over <tt>(a,b)</tt> is achieved within the desired absolute and relative
35
+ # These methods apply the Gauss-Kronrod integration rules in succession until
36
+ # an estimate of the integral of the reciever function (a <tt>GSL::Function</tt>
37
+ # object) over <tt>(a,b)</tt> is achieved within the desired absolute and relative
38
38
  # error limits, <tt>epsabs</tt> and <tt>epsrel</tt> (these are optional, the default
39
39
  # values are 0,0 and 1e-10 respectively). These methods return an array of
40
- # four elements <tt>[result, err, neval, status]</tt>, those are the final
41
- # approximation
42
- # of the integration, an estimate of the absolute error, the number of function
43
- # evaluation, and the status which is returned by the GSL
40
+ # four elements <tt>[result, err, neval, status]</tt>, those are the final
41
+ # approximation
42
+ # of the integration, an estimate of the absolute error, the number of function
43
+ # evaluation, and the status which is returned by the GSL
44
44
  # <tt>integration_qng()</tt> function.
45
45
  #
46
46
  # * Ex: Integrate sin(x) over <tt>x = 0 -- 2</tt> with accuracies <tt>epsabs = 0, epsrel = 1.0e-7</tt>.
@@ -53,20 +53,20 @@
53
53
  #
54
54
  # For all the methods described in this section, the arguments <tt>[epsabs, epsrel]</tt> are optional, and the default values are <tt>[epsabs = 0.0, epsrel = 1e-10]</tt>.
55
55
  #
56
- # == {}[link:index.html"name="3] QAG adaptive integration
57
- # The QAG algorithm is a simple adaptive integration procedure.
58
- # The integration region is divided into subintervals, and on each iteration
59
- # the subinterval with the largest estimated error is bisected.
56
+ # == QAG adaptive integration
57
+ # The QAG algorithm is a simple adaptive integration procedure.
58
+ # The integration region is divided into subintervals, and on each iteration
59
+ # the subinterval with the largest estimated error is bisected.
60
60
  # This reduces the overall error rapidly, as the subintervals become concentrated
61
- # around local difficulties in the integrand. These subintervals are managed by
62
- # a GSL::Integration::Workspace object, which handles the memory for the
61
+ # around local difficulties in the integrand. These subintervals are managed by
62
+ # a GSL::Integration::Workspace object, which handles the memory for the
63
63
  # subinterval ranges, results and error estimates.
64
64
  #
65
- # === {}[link:index.html"name="3.1] GSL::Integration::Workspace class
65
+ # === Workspace class
66
66
  # ---
67
67
  # * GSL::Integration::Workspace.alloc(n = 1000)
68
68
  #
69
- # This creates a workspace sufficient to hold n double precision intervals,
69
+ # This creates a workspace sufficient to hold n double precision intervals,
70
70
  # their integration results and error estimates.
71
71
  #
72
72
  # ---
@@ -74,11 +74,11 @@
74
74
  # * GSL::Integration::Workspace#size
75
75
  #
76
76
  #
77
- # ==== {}[link:index.html"name="3.1.1] Algorithms which require the workspace
77
+ # ==== Algorithms which require the workspace
78
78
  # The algorithms described below require <tt>gsl_integration_workspace</tt> struct
79
- # in C. In Ruby/GSL, the corresponding methods require
79
+ # in C. In Ruby/GSL, the corresponding methods require
80
80
  # a <tt>GSL::Integration::Workspace</tt> object in their arguments. But it is also
81
- # possible to use these methods without workspace arguments: if it
81
+ # possible to use these methods without workspace arguments: if it
82
82
  # is not given, a workspace is created/destroyed internally. Thus
83
83
  # method calls are as
84
84
  #
@@ -89,10 +89,10 @@
89
89
  # w = GSL::Integration::Workspace.alloc(limit)
90
90
  # p f.qag([a, b], w)
91
91
  #
92
- # Explicit uses of a <tt>Workspace</tt> object reduce C function calls for memory
93
- # allocations of workspace objects.
92
+ # Explicit uses of a <tt>Workspace</tt> object reduce C function calls for memory
93
+ # allocations of workspace objects.
94
94
  #
95
- # === {}[link:index.html"name="3.2] Methods
95
+ # === Methods
96
96
  # ---
97
97
  # * GSL::Function#integration_qag([a, b], key = GSL::Integration::GAUSS61)
98
98
  # * GSL::Function#integration_qag([a, b], key, w)
@@ -102,15 +102,15 @@
102
102
  # * GSL::Function#qag(...)
103
103
  # * GSL::Integration::qag(...)
104
104
  #
105
- # These methods apply an integration rule adaptively until an estimate of the
106
- # integral of the reciever function over <tt>(a,b)</tt> is achieved within the
105
+ # These methods apply an integration rule adaptively until an estimate of the
106
+ # integral of the reciever function over <tt>(a,b)</tt> is achieved within the
107
107
  # desired absolute and relative error limits, <tt>epsabs</tt> and <tt>epsrel</tt>.
108
108
  # One can give a <tt>GSL::Integration::Workspace</tt> object <tt>w</tt> with the
109
109
  # last argument (option: if not given, the workspace is internally allocated and
110
- # freed). The method returns an array with four elements
111
- # <tt>[result, err, neval, status]</tt>.
112
- # The integration rule is determined by the value of key, which should be
113
- # chosen from the following symbolic names,
110
+ # freed). The method returns an array with four elements
111
+ # <tt>[result, err, neval, status]</tt>.
112
+ # The integration rule is determined by the value of key, which should be
113
+ # chosen from the following symbolic names,
114
114
  #
115
115
  # GSL::Integration::GAUSS15 (key = 1)
116
116
  # GSL::Integration::GAUSS21 (key = 2)
@@ -119,18 +119,18 @@
119
119
  # GSL::Integration::GAUSS51 (key = 5)
120
120
  # GSL::Integration::GAUSS61 (key = 6)
121
121
  #
122
- # corresponding to the 15, 21, 31, 41, 51 and 61 point Gauss-Kronrod rules. The
123
- # higher-order rules give better accuracy for smooth functions,
124
- # while lower-order rules save time when the function contains local
125
- # difficulties, such as discontinuities.
126
- #
127
- # == {}[link:index.html"name="4] QAGS adaptive integration with singularities
128
- # The presence of an integrable singularity in the integration region causes
129
- # an adaptive routine to concentrate new subintervals around the singularity.
130
- # As the subintervals decrease in size the successive approximations to the
131
- # integral converge in a limiting fashion. This approach to the limit can be
132
- # accelerated using an extrapolation procedure.
133
- # The QAGS algorithm combines adaptive bisection with the Wynn epsilon-algorithm
122
+ # corresponding to the 15, 21, 31, 41, 51 and 61 point Gauss-Kronrod rules. The
123
+ # higher-order rules give better accuracy for smooth functions,
124
+ # while lower-order rules save time when the function contains local
125
+ # difficulties, such as discontinuities.
126
+ #
127
+ # == QAGS adaptive integration with singularities
128
+ # The presence of an integrable singularity in the integration region causes
129
+ # an adaptive routine to concentrate new subintervals around the singularity.
130
+ # As the subintervals decrease in size the successive approximations to the
131
+ # integral converge in a limiting fashion. This approach to the limit can be
132
+ # accelerated using an extrapolation procedure.
133
+ # The QAGS algorithm combines adaptive bisection with the Wynn epsilon-algorithm
134
134
  # to speed up the integration of many types of integrable singularities.
135
135
  #
136
136
  # ---
@@ -140,12 +140,12 @@
140
140
  # * GSL::Function#qags(...)
141
141
  # * GSL::Integration::qags(...)
142
142
  #
143
- # These methods apply the Gauss-Kronrod 21-point integration rule
144
- # adaptively until an estimate of the integral over <tt>(a,b)</tt> is
145
- # achieved within the desired absolute and relative error limits,
146
- # <tt>epsabs</tt> and <tt>epsrel</tt>. The results are extrapolated using the
147
- # epsilon-algorithm, which accelerates the convergence of the integral
148
- # in the presence of discontinuities and integrable singularities.
143
+ # These methods apply the Gauss-Kronrod 21-point integration rule
144
+ # adaptively until an estimate of the integral over <tt>(a,b)</tt> is
145
+ # achieved within the desired absolute and relative error limits,
146
+ # <tt>epsabs</tt> and <tt>epsrel</tt>. The results are extrapolated using the
147
+ # epsilon-algorithm, which accelerates the convergence of the integral
148
+ # in the presence of discontinuities and integrable singularities.
149
149
  # The maximum number of subintervals is given by <tt>limit</tt>.
150
150
  #
151
151
  # * ex:
@@ -155,22 +155,22 @@
155
155
  # }
156
156
  #
157
157
  # # create the function, with the parameter alpha = 1.0
158
- # f = GSL::Function.alloc(proc, 1.0)
158
+ # f = GSL::Function.alloc(proc, 1.0)
159
159
  #
160
160
  # p f.integration_qags(0, 1)
161
161
  #
162
- # == {}[link:index.html"name="5] QAGP adaptive integration with known singular points
162
+ # == QAGP adaptive integration with known singular points
163
163
  # ---
164
164
  # * GSL::Function#integration_qagp(pts, [epsabs = 0.0, epsrel = 1e-10], limit = 1000, w)
165
165
  # * GSL::Function#qagp(...)
166
166
  # * GSL::Integration::qagp(...)
167
167
  #
168
- # These methods apply the adaptive integration algorithm QAGS taking
169
- # account of the user-supplied locations of singular points. The array
170
- # <tt>pts</tt> (a Ruby array or a GSL::Vector object) should contain the
168
+ # These methods apply the adaptive integration algorithm QAGS taking
169
+ # account of the user-supplied locations of singular points. The array
170
+ # <tt>pts</tt> (a Ruby array or a GSL::Vector object) should contain the
171
171
  # endpoints of the integration ranges defined by the integration region a
172
- # nd locations of the singularities. For example, to integrate over the
173
- # region <tt>(a,b)</tt> with break-points at x_1, x_2, x_3
172
+ # nd locations of the singularities. For example, to integrate over the
173
+ # region <tt>(a,b)</tt> with break-points at x_1, x_2, x_3
174
174
  # (where a < x_1 < x_2 < x_3 < b) the following <tt>pts</tt> array should be used
175
175
  #
176
176
  # pts[0] = a
@@ -191,18 +191,18 @@
191
191
  # p f454.qagp(pts, 0.0, 1e-3) # <---- [52.7408061167272, 0.000175570384826074, 20, 0]
192
192
  # # Expect: 61 log(2) + (77/4) log(7) - 27 = 52.7408061167272
193
193
  #
194
- # == {}[link:index.html"name="6] QAGI adaptive integration on infinite intervals
194
+ # == QAGI adaptive integration on infinite intervals
195
195
  # ---
196
196
  # * GSL::Function#integration_qagi([epsabs = 0.0, epsrel = 1e-10], limit = 1000, w)
197
197
  # * GSL::Function#qagi(...)
198
198
  # * GSL::Integration::qagi(...)
199
199
  #
200
- # These methods compute the integral of the function over the infinite
200
+ # These methods compute the integral of the function over the infinite
201
201
  # interval (-infty,+infty). The integral is mapped onto the interval
202
- # (0,1] using the transformation x = (1-t)/t. It is then integrated using
203
- # the QAGS algorithm. The normal 21-point Gauss-Kronrod rule of QAGS is
204
- # replaced by a 15-point rule, because the transformation can generate an
205
- # integrable singularity at the origin. In this case a lower-order rule is
202
+ # (0,1] using the transformation x = (1-t)/t. It is then integrated using
203
+ # the QAGS algorithm. The normal 21-point Gauss-Kronrod rule of QAGS is
204
+ # replaced by a 15-point rule, because the transformation can generate an
205
+ # integrable singularity at the origin. In this case a lower-order rule is
206
206
  # more efficient.
207
207
  #
208
208
  # * ex
@@ -220,9 +220,9 @@
220
220
  # * GSL::Function#qagiu(...)
221
221
  # * GSL::Integration::qagiu(...)
222
222
  #
223
- # These methods compute the integral of the function over the
223
+ # These methods compute the integral of the function over the
224
224
  # semi-infinite interval (a,+infty).
225
- #
225
+ #
226
226
  # ---
227
227
  # * GSL::Function#integration_qagil(b, epsabs = 0.0, epsrel = 1e-10, limit = 1000)
228
228
  # * GSL::Function#integration_qagil(b, epsabs = 0.0, epsrel = 1e-10, w)
@@ -230,22 +230,22 @@
230
230
  # * GSL::Function#qagil(...)
231
231
  # * GSL::Integration::qagil(...)
232
232
  #
233
- # These methods compute the integral of the function over the
233
+ # These methods compute the integral of the function over the
234
234
  # semi-infinite interval (-infty,b).
235
235
  #
236
- # == {}[link:index.html"name="7] QAWC adaptive integration for Cauchy principal values
236
+ # == QAWC adaptive integration for Cauchy principal values
237
237
  # ---
238
238
  # * GSL::Function#integration_qawc([a, b], c, [epsabs = 0.0, epsrel = 1e-10], limit. 1000)
239
239
  # * GSL::Function#qawc(...)
240
240
  # * GSL::Function#qawc(...)
241
241
  #
242
- # These methods compute the Cauchy principal value of the integral over
243
- # <tt>(a,b)</tt>, with a singularity at <tt>c</tt>. The adaptive bisection algorithm
244
- # of QAG is used, with modifications to ensure that subdivisions do not occur
245
- # at the singular point <tt>x = c</tt>. When a subinterval contains the point
246
- # <tt>x = c</tt> or is close to it then a special 25-point modified
247
- # Clenshaw-Curtis rule is used to control the singularity. Further away from
248
- # the singularity the algorithm uses an ordinary 15-point Gauss-Kronrod
242
+ # These methods compute the Cauchy principal value of the integral over
243
+ # <tt>(a,b)</tt>, with a singularity at <tt>c</tt>. The adaptive bisection algorithm
244
+ # of QAG is used, with modifications to ensure that subdivisions do not occur
245
+ # at the singular point <tt>x = c</tt>. When a subinterval contains the point
246
+ # <tt>x = c</tt> or is close to it then a special 25-point modified
247
+ # Clenshaw-Curtis rule is used to control the singularity. Further away from
248
+ # the singularity the algorithm uses an ordinary 15-point Gauss-Kronrod
249
249
  # integration rule.
250
250
  #
251
251
  # * ex:
@@ -254,10 +254,10 @@
254
254
  #
255
255
  # p f459.qawc([-1.0, 5.0], 0, [0.0, 1e-3]) # Expect: log(125/631)/18
256
256
  #
257
- # == {}[link:index.html"name="8] QAWS adaptive integration for singular functions
258
- # The QAWS algorithm is designed for integrands with algebraic-logarithmic
259
- # singularities at the end-points of an integration region.
260
- # In order to work efficiently the algorithm requires a precomputed
257
+ # == QAWS adaptive integration for singular functions
258
+ # The QAWS algorithm is designed for integrands with algebraic-logarithmic
259
+ # singularities at the end-points of an integration region.
260
+ # In order to work efficiently the algorithm requires a precomputed
261
261
  # table of Chebyshev moments.
262
262
  #
263
263
  # ---
@@ -266,8 +266,8 @@
266
266
  # * GSL::Function#qaws(...)
267
267
  # * GSL::Integration::qaws(...)
268
268
  #
269
- # These methods compute the integral of the function over the interval
270
- # <tt>(a,b)</tt> with the singular weight function
269
+ # These methods compute the integral of the function over the interval
270
+ # <tt>(a,b)</tt> with the singular weight function
271
271
  # (x-a)^alpha (b-x)^beta log^mu (x-a) log^nu (b-x)
272
272
  # The parameters <tt>[alpha, beta, mu, nu]</tt> is given by a Ruby array
273
273
  # <tt>table</tt>, or by a <tt>GSL::Integration::QAWS_Table</tt> object.
@@ -292,9 +292,9 @@
292
292
  # table = Integration::QAWS_Table.alloc(0.0, 0.0, 1, 0)
293
293
  # p f458.qaws([0.0, 1.0], table, [0.0, 1e-10])
294
294
  #
295
- # == {}[link:index.html"name="9] QAWO adaptive integration for oscillatory functions
296
- # The QAWO algorithm is designed for integrands with an oscillatory factor,
297
- # sin(omega x) or cos(omega x). In order to work efficiently the algorithm
295
+ # == QAWO adaptive integration for oscillatory functions
296
+ # The QAWO algorithm is designed for integrands with an oscillatory factor,
297
+ # sin(omega x) or cos(omega x). In order to work efficiently the algorithm
298
298
  # requires a table of Chebyshev moments.
299
299
  #
300
300
  #
@@ -303,7 +303,7 @@
303
303
  # * GSL::Function#qawo(...)
304
304
  # * GSL::Integration::qawo(...)
305
305
  #
306
- # This method uses an adaptive algorithm to compute the integral over
306
+ # This method uses an adaptive algorithm to compute the integral over
307
307
  # <tt>[a,b]</tt> with the weight function sin(omega x) or cos(omega x) defined by
308
308
  # the table <tt>table</tt>.
309
309
  #
@@ -324,7 +324,7 @@
324
324
  # table = Integration::QAWO_Table.alloc(10.0*Math::PI, 1.0, Integration::SINE, 1000)
325
325
  # p f456.qawo(0.0, [0.0, 1e-10], table)
326
326
  #
327
- # == {}[link:index.html"name="10] QAWF adaptive integration for Fourier integrals
327
+ # == QAWF adaptive integration for Fourier integrals
328
328
  # ---
329
329
  # * GSL::Function#integration_qawf(a, epsabs = 1e-10, limit = 1000, w, wc, table)
330
330
  # * GSL::Function#integration_qawf(a, epsabs = 1e-10, limit = 1000, table)
@@ -334,14 +334,14 @@
334
334
  # * GSL::Function#qawf(...)
335
335
  # * GSL::Integration::qawf(...)
336
336
  #
337
- # This method attempts to compute a Fourier integral of the function over
337
+ # This method attempts to compute a Fourier integral of the function over
338
338
  # the semi-infinite interval [a,+infty).
339
339
  #
340
340
  # I = \int_a^{+infty} dx f(x) sin(omega x)
341
341
  # I = \int_a^{+infty} dx f(x) cos(omega x)
342
342
  #
343
- # The parameter omega is taken from the table <tt>table</tt> (the length <tt>L|</tt>
344
- # can take any value, since it is overridden by this function to a value
343
+ # The parameter omega is taken from the table <tt>table</tt> (the length <tt>L|</tt>
344
+ # can take any value, since it is overridden by this function to a value
345
345
  # appropriate for the fourier integration).
346
346
  #
347
347
  # * ex:
@@ -373,15 +373,15 @@
373
373
  # p f457.qawf(0.0, limit, w, table) # Error
374
374
  # p f457.qawf(0.0, limit, wc, table) # Error
375
375
  #
376
- # == {}[link:index.html"name="11] Gauss-Legendre integration
376
+ # == Gauss-Legendre integration
377
377
  # (GSL-1.14)
378
378
  # The fixed-order Gauss-Legendre integration routines are provided for fast integration of smooth functions with known polynomial order. The n-point Gauss-Legendre rule is exact for polynomials of order 2*n-1 or less. For example, these rules are useful when integrating basis functions to form mass matrices for the Galerkin method. Unlike other numerical integration routines within the library, these routines do not accept absolute or relative error bounds.
379
379
  #
380
380
  # ---
381
381
  # * GSL::Integration::Glfixed_table.alloc(n)
382
382
  #
383
- # Determines the Gauss-Legendre abscissae and weights necessary for an <tt>n</tt>-point fixed order
384
- # integration scheme. If possible, high precision precomputed coefficients are used.
383
+ # Determines the Gauss-Legendre abscissae and weights necessary for an <tt>n</tt>-point fixed order
384
+ # integration scheme. If possible, high precision precomputed coefficients are used.
385
385
  # If precomputed weights are not available, lower precision coefficients are computed on the fly.
386
386
  #
387
387
  # ---
@@ -389,10 +389,10 @@
389
389
  #
390
390
  # Applies the Gauss-Legendre integration rule contained in table <tt>t</tt> and returns the result.
391
391
  #
392
- # {prev}[link:files/rdoc/wavelet_rdoc.html]
393
- # {next}[link:files/rdoc/rng_rdoc.html]
392
+ # {prev}[link:rdoc/wavelet_rdoc.html]
393
+ # {next}[link:rdoc/rng_rdoc.html]
394
394
  #
395
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
396
- # {top}[link:files/rdoc/index_rdoc.html]
395
+ # {Reference index}[link:rdoc/ref_rdoc.html]
396
+ # {top}[link:index.html]
397
397
  #
398
398
  #