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
@@ -2,37 +2,37 @@
2
2
  # = Quasi-Random Sequences
3
3
  #
4
4
  # This chapter describes the quasi-random sequence generator <tt>GSL::QRng</tt>
5
- # of arbitrary dimensions. A quasi-random sequence progressively covers
6
- # a d-dimensional space with a set of points that are uniformly distributed.
5
+ # of arbitrary dimensions. A quasi-random sequence progressively covers
6
+ # a d-dimensional space with a set of points that are uniformly distributed.
7
7
  # Quasi-random sequences are also known as low-discrepancy sequences.
8
- # The quasi-random sequence generators use an interface that is similar
8
+ # The quasi-random sequence generators use an interface that is similar
9
9
  # to the interface for random number generators.
10
10
  #
11
11
  # Contents:
12
- # 1. {Quasi-random number generator initialization}[link:files/rdoc/qrng_rdoc.html#1]
13
- # 1. {Sampling from a quasi-random number generator}[link:files/rdoc/qrng_rdoc.html#2]
14
- # 1. {Auxiliary quasi-random number generator functions}[link:files/rdoc/qrng_rdoc.html#3]
15
- # 1. {Saving and resorting quasi-random number generator state}[link:files/rdoc/qrng_rdoc.html#4]
16
- # 1. {Quasi-random number generator algorithms}[link:files/rdoc/qrng_rdoc.html#5]
12
+ # 1. {Quasi-random number generator initialization}[link:rdoc/qrng_rdoc.html#label-Quasi-random+number+generator+initialization]
13
+ # 1. {Sampling from a quasi-random number generator}[link:rdoc/qrng_rdoc.html#label-Sampling+from+a+quasi-random+number+generator]
14
+ # 1. {Auxiliary quasi-random number generator functions}[link:rdoc/qrng_rdoc.html#label-Auxiliary+quasi-random+number+generator+functions]
15
+ # 1. {Saving and resorting quasi-random number generator state}[link:rdoc/qrng_rdoc.html#label-Saving+and+resorting+quasi-random+number+generator+state]
16
+ # 1. {Quasi-random number generator algorithms}[link:rdoc/qrng_rdoc.html#label-Quasi-random+number+generator+algorithms]
17
17
  #
18
- # == {}[link:index.html"name="1] Quasi-random number generator initialization
18
+ # == Quasi-random number generator initialization
19
19
  #
20
20
  # ---
21
21
  # * GSL::QRng.alloc(T, d)
22
22
  #
23
- # This returns a GSL::QRng object, a quasi-random sequence generator of type <tt>T</tt> and dimension <tt>d</tt>.
23
+ # This returns a GSL::QRng object, a quasi-random sequence generator of type <tt>T</tt> and dimension <tt>d</tt>.
24
24
  #
25
25
  # ---
26
26
  # * GSL::QRng::init
27
27
  #
28
- # This reinitializes the generator to its starting point.
28
+ # This reinitializes the generator to its starting point.
29
29
  #
30
- # == {}[link:index.html"name="2] Sampling from a quasi-random number generator
30
+ # == Sampling from a quasi-random number generator
31
31
  #
32
32
  # ---
33
33
  # * GSL::QRng::get(x)
34
34
  #
35
- # This calculate the next point <tt>x</tt> from the sequence generator. Here <tt>x</tt> is an instance of the {GSL::Vector}[link:files/rdoc/vector_rdoc.html] class. The space available for <tt>x</tt> must match the dimension of the generator. The point <tt>x</tt> will lie in the range 0 < x_i < 1 for each x_i.
35
+ # This calculate the next point <tt>x</tt> from the sequence generator. Here <tt>x</tt> is an instance of the {GSL::Vector}[link:rdoc/vector_rdoc.html] class. The space available for <tt>x</tt> must match the dimension of the generator. The point <tt>x</tt> will lie in the range 0 < x_i < 1 for each x_i.
36
36
  #
37
37
  # This is used as
38
38
  # q = QRng.alloc(QRng::SOBOL, dim)
@@ -42,7 +42,7 @@
42
42
  # printf("%.5f %.5f\n", v[0], v[1])
43
43
  # end
44
44
  #
45
- # == {}[link:index.html"name="3] Auxiliary quasi-random number generator functions
45
+ # == Auxiliary quasi-random number generator functions
46
46
  #
47
47
  # ---
48
48
  # * GSL::QRng::name
@@ -53,14 +53,14 @@
53
53
  # * GSL::QRng::size
54
54
  #
55
55
  #
56
- # == {}[link:index.html"name="4] Saving and resorting quasi-random number generator state
56
+ # == Saving and resorting quasi-random number generator state
57
57
  # ---
58
58
  # * GSL::QRng::clone
59
59
  # * GSL::QRng::duplicate
60
60
  #
61
61
  # Return a newly created generator which is an exact copy of the generator <tt>self</tt>.
62
- # == {}[link:index.html"name="5] Quasi-random number generator algorithms
63
- # In creating a generator by the method <tt>GSL::QRng.alloc(T, d)</tt>,
62
+ # == Quasi-random number generator algorithms
63
+ # In creating a generator by the method <tt>GSL::QRng.alloc(T, d)</tt>,
64
64
  # the algorithm type <tt>T</tt> is given by a String or a Fixnum constant.
65
65
  # The following quasi-random sequence algorithms are available,
66
66
  #
@@ -81,10 +81,10 @@
81
81
  #
82
82
  # (GSL-1.11 or later) These generators use the Halton and reverse Halton sequences described in J.H. Halton, Numerische Mathematik 2, 84-90 (1960) and B. Vandewoestyne and R. Cools Computational and Applied Mathematics 189, 1&2, 341-361 (2006). They are valid up to 1229 dimensions.
83
83
  #
84
- # {prev}[link:files/rdoc/rng_rdoc.html]
85
- # {next}[link:files/rdoc/randist_rdoc.html]
84
+ # {prev}[link:rdoc/rng_rdoc.html]
85
+ # {next}[link:rdoc/randist_rdoc.html]
86
86
  #
87
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
88
- # {top}[link:files/rdoc/index_rdoc.html]
87
+ # {Reference index}[link:rdoc/ref_rdoc.html]
88
+ # {top}[link:index.html]
89
89
  #
90
90
  #
@@ -1,79 +1,79 @@
1
1
  #
2
2
  # = Random Number Distributions
3
- # This chapter describes functions for generating random variates and computing
4
- # their probability distributions. Samples from the distributions described
5
- # in this chapter can be obtained using any of the random number generators
6
- # in the library as an underlying source of randomness.
3
+ # This chapter describes functions for generating random variates and computing
4
+ # their probability distributions. Samples from the distributions described
5
+ # in this chapter can be obtained using any of the random number generators
6
+ # in the library as an underlying source of randomness.
7
7
  #
8
- # In the simplest cases a non-uniform distribution can be obtained analytically
9
- # from the uniform distribution of a random number generator by applying an
8
+ # In the simplest cases a non-uniform distribution can be obtained analytically
9
+ # from the uniform distribution of a random number generator by applying an
10
10
  # appropriate transformation. This method uses one call to the random number
11
- # generator. More complicated distributions are created by the
11
+ # generator. More complicated distributions are created by the
12
12
  # acceptance-rejection method, which compares the desired distribution against
13
- # a distribution which is similar and known analytically. This usually requires
14
- # several samples from the generator.
13
+ # a distribution which is similar and known analytically. This usually requires
14
+ # several samples from the generator.
15
15
  #
16
- # The library also provides cumulative distribution functions and inverse
17
- # cumulative distribution functions, sometimes referred to as quantile
18
- # functions. The cumulative distribution functions and their inverses are
19
- # computed separately for the upper and lower tails of the distribution,
20
- # allowing full accuracy to be retained for small results.
16
+ # The library also provides cumulative distribution functions and inverse
17
+ # cumulative distribution functions, sometimes referred to as quantile
18
+ # functions. The cumulative distribution functions and their inverses are
19
+ # computed separately for the upper and lower tails of the distribution,
20
+ # allowing full accuracy to be retained for small results.
21
21
  #
22
22
  # Contents:
23
- # 1. {Introduction}[link:files/rdoc/randist_rdoc.html#1]
24
- # 1. {The Gaussian Distribution}[link:files/rdoc/randist_rdoc.html#2]
25
- # 1. {The Gaussian Tail Distribution}[link:files/rdoc/randist_rdoc.html#3]
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
- # and more, see {the GSL reference}[http://www.gnu.org/software/gsl/manual/"target="_top]
28
- # 1. {Shuffling and Sampling}[link:files/rdoc/randist_rdoc.html#7]
27
+ # and more, see {the GSL reference}[https://gnu.org/software/gsl/manual/]
28
+ # 1. {Shuffling and Sampling}[link:rdoc/randist_rdoc.html#label-Shuffling+and+Sampling]
29
29
  #
30
- # == {}[link:index.html"name="1] Introduction
31
- # Continuous random number distributions are defined by a probability density
32
- # function, p(x), such that the probability of x occurring in the
33
- # infinitesimal range x to x+dx is p dx.
30
+ # == Introduction
31
+ # Continuous random number distributions are defined by a probability density
32
+ # function, p(x), such that the probability of x occurring in the
33
+ # infinitesimal range x to x+dx is p dx.
34
34
  #
35
- # The cumulative distribution function for the lower tail P(x) is defined by the
36
- # integral, and gives the probability of a variate taking a value less than x.
35
+ # The cumulative distribution function for the lower tail P(x) is defined by the
36
+ # integral, and gives the probability of a variate taking a value less than x.
37
37
  #
38
- # The cumulative distribution function for the upper tail Q(x) is defined by the
39
- # integral, and gives the probability of a variate taking a value greater than
40
- # x.
38
+ # The cumulative distribution function for the upper tail Q(x) is defined by the
39
+ # integral, and gives the probability of a variate taking a value greater than
40
+ # x.
41
41
  #
42
- # The upper and lower cumulative distribution functions are related
43
- # by P(x) + Q(x) = 1 and satisfy 0 <= P(x) <= 1, 0 <= Q(x) <= 1.
42
+ # The upper and lower cumulative distribution functions are related
43
+ # by P(x) + Q(x) = 1 and satisfy 0 <= P(x) <= 1, 0 <= Q(x) <= 1.
44
44
  #
45
- # The inverse cumulative distributions, x=P^{-1}(P) and x=Q^{-1}(Q) give the
46
- # values of x which correspond to a specific value of P or Q. They can be used
47
- # to find confidence limits from probability values.
45
+ # The inverse cumulative distributions, x=P^{-1}(P) and x=Q^{-1}(Q) give the
46
+ # values of x which correspond to a specific value of P or Q. They can be used
47
+ # to find confidence limits from probability values.
48
48
  #
49
- # For discrete distributions the probability of sampling the integer value k is
50
- # given by p(k), where \sum_k p(k) = 1. The cumulative distribution for the
51
- # lower tail P(k) of a discrete distribution is defined as, where the sum is
52
- # over the allowed range of the distribution less than or equal to k.
49
+ # For discrete distributions the probability of sampling the integer value k is
50
+ # given by p(k), where \sum_k p(k) = 1. The cumulative distribution for the
51
+ # lower tail P(k) of a discrete distribution is defined as, where the sum is
52
+ # over the allowed range of the distribution less than or equal to k.
53
53
  #
54
54
  # The cumulative distribution for the upper tail of a discrete distribution Q(k)
55
- # is defined as giving the sum of probabilities for all values greater than k.
56
- # These two definitions satisfy the identity P(k)+Q(k)=1.
55
+ # is defined as giving the sum of probabilities for all values greater than k.
56
+ # These two definitions satisfy the identity P(k)+Q(k)=1.
57
57
  #
58
- # If the range of the distribution is 1 to n inclusive then P(n)=1, Q(n)=0
59
- # while P(1) = p(1), Q(1)=1-p(1).
58
+ # If the range of the distribution is 1 to n inclusive then P(n)=1, Q(n)=0
59
+ # while P(1) = p(1), Q(1)=1-p(1).
60
60
  #
61
61
  #
62
62
  #
63
- # == {}[link:index.html"name="2] The Gaussian Distribution
63
+ # == The Gaussian Distribution
64
64
  # ---
65
65
  # * GSL::Rng#gaussian(sigma = 1)
66
66
  # * GSL::Ran::gaussian(rng, sigma = 1)
67
67
  # * GSL::Rng#ugaussian
68
68
  # * GSL::Ran::ugaussian
69
69
  #
70
- # These return a Gaussian random variate, with mean zero and standard
71
- # deviation <tt>sigma</tt>.
70
+ # These return a Gaussian random variate, with mean zero and standard
71
+ # deviation <tt>sigma</tt>.
72
72
  #
73
73
  # ---
74
74
  # * GSL::Ran::gaussian_pdf(x, sigma = 1)
75
75
  #
76
- # Computes the probability density p(x) at <tt>x</tt> for a Gaussian distribution
76
+ # Computes the probability density p(x) at <tt>x</tt> for a Gaussian distribution
77
77
  # with standard deviation <tt>sigma</tt>.
78
78
  #
79
79
  # ---
@@ -92,57 +92,57 @@
92
92
  # * GSL::Cdf::ugaussian_Pinv(P)
93
93
  # * GSL::Cdf::ugaussian_Qinv(Q)
94
94
  #
95
- # These methods compute the cumulative distribution functions P(x), Q(x)
96
- # and their inverses for the Gaussian distribution with standard
95
+ # These methods compute the cumulative distribution functions P(x), Q(x)
96
+ # and their inverses for the Gaussian distribution with standard
97
97
  # deviation <tt>sigma</tt>.
98
98
  #
99
- # == {}[link:index.html"name="3] The Gaussian Tail Distribution
99
+ # == The Gaussian Tail Distribution
100
100
  # ---
101
101
  # * GSL::Rng#gaussian_tail(a, sigma = 1)
102
102
  # * GSL::Ran#gaussian_tail(rng, a, sigma = 1)
103
103
  # * GSL::Rng#ugaussian_tail(a)
104
104
  # * GSL::Ran#ugaussian_tail(rng)
105
105
  #
106
- # These methods provide random variates from the upper tail of a Gaussian
107
- # distribution with standard deviation <tt>sigma</tt>.
106
+ # These methods provide random variates from the upper tail of a Gaussian
107
+ # distribution with standard deviation <tt>sigma</tt>.
108
108
  # The values returned are larger than the lower limit <tt>a</tt>, which must be positive.
109
109
  #
110
110
  # ---
111
111
  # * GSL::Ran::gaussian_tail_pdf(x, a, sigma = 1)
112
112
  # * GSL::Ran::ugaussian_tail_pdf(x, a)
113
113
  #
114
- # These methods compute the probability density p(x) at <tt>x</tt> for a Gaussian
115
- # tail distribution with standard deviation <tt>sigma</tt>
114
+ # These methods compute the probability density p(x) at <tt>x</tt> for a Gaussian
115
+ # tail distribution with standard deviation <tt>sigma</tt>
116
116
  # and lower limit <tt>a</tt>.
117
117
  #
118
- # == {}[link:index.html"name="4] The Bivariate Gaussian Distribution
118
+ # == The Bivariate Gaussian Distribution
119
119
  # ---
120
120
  # * GSL::Rng#bivariate_gaussian(sigma_x, sigma_y, rho)
121
121
  # * GSL::Ran::bivariate_gaussian(rng, sigma_x, sigma_y, rho)
122
122
  #
123
- # These methods generate a pair of correlated gaussian variates,
124
- # with mean zero, correlation coefficient <tt>rho</tt> and standard deviations
123
+ # These methods generate a pair of correlated gaussian variates,
124
+ # with mean zero, correlation coefficient <tt>rho</tt> and standard deviations
125
125
  # <tt>sigma_x</tt> and <tt>sigma_y</tt> in the x and y directions.
126
126
  #
127
127
  # ---
128
128
  # * GSL::Ran::bivariate_gaussian_pdf(x, y, sigma_x, sigma_y, rho)
129
129
  #
130
- # This method computes the probability density p(x,y) at <tt>(x,y)</tt>
131
- # for a bivariate gaussian distribution with standard deviations
130
+ # This method computes the probability density p(x,y) at <tt>(x,y)</tt>
131
+ # for a bivariate gaussian distribution with standard deviations
132
132
  # <tt>sigma_x, sigma_y</tt> and correlation coefficient <tt>rho</tt>.
133
133
  #
134
- # == {}[link:index.html"name="5] The Exponential Distribution
134
+ # == The Exponential Distribution
135
135
  # ---
136
136
  # * GSL::Rng#exponential(mu)
137
137
  # * GSL::Ran::exponential(rng, mu)
138
138
  #
139
- # These methods return a random variate from the exponential
139
+ # These methods return a random variate from the exponential
140
140
  # distribution with mean <tt>mu</tt>.
141
141
  #
142
142
  # ---
143
143
  # * GSL::Ran::exponential_pdf(x, mu)
144
144
  #
145
- # This method computes the probability density p(x) at <tt>x</tt>
145
+ # This method computes the probability density p(x) at <tt>x</tt>
146
146
  # for an exponential distribution with mean <tt>mu</tt>.
147
147
  #
148
148
  # ---
@@ -151,21 +151,21 @@
151
151
  # * GSL::Cdf::exponential_Pinv(P, mu)
152
152
  # * GSL::Cdf::exponential_Qinv(Q, mu)
153
153
  #
154
- # These methods compute the cumulative distribution functions P(x), Q(x)
154
+ # These methods compute the cumulative distribution functions P(x), Q(x)
155
155
  # and their inverses for the exponential distribution with mean <tt>mu</tt>.
156
156
  #
157
- # == {}[link:index.html"name="6] The Laplace Distribution
157
+ # == The Laplace Distribution
158
158
  # ---
159
159
  # * GSL::Rng#laplace(a)
160
160
  # * GSL::Ran::laplace(rng, a)
161
161
  #
162
- # These methods return a random variate from the Laplace distribution
162
+ # These methods return a random variate from the Laplace distribution
163
163
  # with width <tt>a</tt>.
164
164
  #
165
165
  # ---
166
166
  # * GSL::Ran::laplace_pdf(x, a)
167
167
  #
168
- # This method computes the probability density p(x) at <tt>x</tt>
168
+ # This method computes the probability density p(x) at <tt>x</tt>
169
169
  # for a Laplace distribution with width <tt>a</tt>.
170
170
  #
171
171
  # ---
@@ -174,7 +174,7 @@
174
174
  # * GSL::Cdf::laplace_Pinv(P, a)
175
175
  # * GSL::Cdf::laplace_Qinv(Q, a)
176
176
  #
177
- # These methods compute the cumulative distribution functions P(x), Q(x)
177
+ # These methods compute the cumulative distribution functions P(x), Q(x)
178
178
  # and their inverses for the Laplace distribution with width <tt>a</tt>.
179
179
  #
180
180
  # ---
@@ -198,36 +198,36 @@
198
198
  #
199
199
  # ...
200
200
  #
201
- # and more, see {the GSL reference}[http://www.gnu.org/software/gsl/manual/gsl-ref_19.html#SEC286"target="_top].
201
+ # and more, see {the GSL reference}[https://gnu.org/software/gsl/manual/gsl-ref_19.html#SEC286].
202
202
  #
203
- # == {}[link:index.html"name="7] Shuffling and Sampling
203
+ # == Shuffling and Sampling
204
204
  # ---
205
205
  # * GSL::Rng#shuffle(v, n)
206
206
  #
207
- # This randomly shuffles the order of <tt>n</tt> objects,
208
- # stored in the {GSL::Vector}[link:files/rdoc/vector_rdoc.html] object <tt>v</tt>.
207
+ # This randomly shuffles the order of <tt>n</tt> objects,
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:files/rdoc/vector_rdoc.html] object with <tt>k</tt> objects
213
- # taken randomly from the {GSL::Vector}[link:files/rdoc/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
- # The objects are sampled without replacement, thus each object can only
216
- # appear once in the returned vector. It is required that <tt>k</tt> be less
217
- # than or equal to the length of the vector <tt>v</tt>.
215
+ # The objects are sampled without replacement, thus each object can only
216
+ # appear once in the returned vector. It is required that <tt>k</tt> be less
217
+ # than or equal to the length of the vector <tt>v</tt>.
218
218
  #
219
219
  # ---
220
220
  # * GSL::Rng#sample(v, k)
221
221
  #
222
- # This method is like the method <tt>choose</tt> but samples <tt>k</tt> items
223
- # from the original vector <tt>v</tt> with replacement, so the same object
224
- # can appear more than once in the output sequence. There is no requirement
222
+ # This method is like the method <tt>choose</tt> but samples <tt>k</tt> items
223
+ # from the original vector <tt>v</tt> with replacement, so the same object
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:files/rdoc/qrng_rdoc.html]
228
- # {next}[link:files/rdoc/stats_rdoc.html]
227
+ # {prev}[link:rdoc/qrng_rdoc.html]
228
+ # {next}[link:rdoc/stats_rdoc.html]
229
+ #
230
+ # {Reference index}[link:rdoc/ref_rdoc.html]
231
+ # {top}[link:index.html]
229
232
  #
230
- # {Reference index}[link:files/rdoc/ref_rdoc.html]
231
- # {top}[link:files/rdoc/index_rdoc.html]
232
- #
233
233
  #
@@ -1,14 +1,14 @@
1
1
  #
2
- # = {Ruby/GSL Reference}[link:files/rdoc/ref_rdoc.html"target="_parent]
3
- # (See also {Gnu Scientific Library -- Reference Manual}[http://www.gnu.org/software/gsl/manual/html_node/"target="_top])
2
+ # = {Ruby/GSL Reference}[link:rdoc/ref_rdoc.html]
3
+ # (See also {Gnu Scientific Library -- Reference Manual}[https://gnu.org/software/gsl/manual/html_node/])
4
4
  #
5
- # == {}[link:index.html"name="1] Front Matter
5
+ # == Front Matter
6
6
  # This document describes the modules, classes and the methods of Ruby/GSL. This
7
7
  # includes cut-and-paste from the
8
- # {GNU Scientific Library -- Reference Manual}[http://www.gnu.org/software/gsl/manual/html_node/"target="_top],
8
+ # {GNU Scientific Library -- Reference Manual}[https://gnu.org/software/gsl/manual/html_node/],
9
9
  # and documents of the extention libraries.
10
10
  #
11
- # === {}[link:index.html"name="1.1] Copyright of the GSL Reference
11
+ # === Copyright of the GSL Reference
12
12
  #
13
13
  # Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
14
14
  # 2007, 2008 The GSL Team.
@@ -22,72 +22,72 @@
22
22
  # Free Documentation License". (a) The Back-Cover Text is: "You have the freedom
23
23
  # to copy and modify this GNU Manual."
24
24
  #
25
- # === {}[link:index.html"name="1.2] Copyright of this reference
25
+ # === Copyright of this reference
26
26
  #
27
27
  # 2009,2010 Yoshiki Tsunesada, David MacMahon
28
28
  #
29
29
  # Permission is granted to copy, distribute and/or modify this document under
30
30
  # the terms of the GNU Free Documentation License.
31
31
  #
32
- # == {}[link:index.html"name="2] Ruby/GSL Reference
32
+ # == Ruby/GSL Reference
33
33
  #
34
- # 1. {Introduction}[link:files/rdoc/intro_rdoc.html]
35
- # 1. {Using Ruby/GSL}[link:files/rdoc/use_rdoc.html]
36
- # 1. {Error Handling}[link:files/rdoc/ehandling_rdoc.html]
37
- # 1. {Mathematical Functions}[link:files/rdoc/math_rdoc.html]
38
- # 1. {Complex Numbers}[link:files/rdoc/complex_rdoc.html]
39
- # 1. {Polynomials}[link:files/rdoc/poly_rdoc.html]
40
- # 1. {Special Functions}[link:files/rdoc/sf_rdoc.html]
41
- # 1. {Vectors}[link:files/rdoc/vector_rdoc.html] and {Matrices}[link:files/rdoc/matrix_rdoc.html]
42
- # 1. {Permutations}[link:files/rdoc/perm_rdoc.html]
43
- # 1. {Combinations}[link:files/rdoc/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:files/rdoc/sort_rdoc.html] (GSL-1.14)
45
+ # 1. {Multiset}[link:rdoc/sort_rdoc.html] (GSL-1.14)
46
46
  ++
47
- # 1. {Sorting}[link:files/rdoc/sort_rdoc.html]
48
- # 1. {BLAS Support}[link:files/rdoc/blas_rdoc.html]
49
- # 1. {Linear Algebra}[link:files/rdoc/linalg_rdoc.html]
50
- # 1. {Eigen Systems}[link:files/rdoc/eigen_rdoc.html]
51
- # 1. {Fast Fourier Transform}[link:files/rdoc/fft_rdoc.html]
52
- # 1. {Numerical Integration}[link:files/rdoc/integration_rdoc.html]
53
- # 1. {Random Number Generation}[link:files/rdoc/rng_rdoc.html]
54
- # 1. {Quasi-Random Sequences}[link:files/rdoc/qrng_rdoc.html]
55
- # 1. {Random Number Distributions}[link:files/rdoc/randist_rdoc.html]
56
- # 1. {Statistics}[link:files/rdoc/stats_rdoc.html]
57
- # 1. {1d-Histograms}[link:files/rdoc/hist_rdoc.html], {2d-Histograms}[link:files/rdoc/hist2d_rdoc.html] and {3d-Histograms}[link:files/rdoc/hist3d_rdoc.html]
58
- # 1. {N-tuples}[link:files/rdoc/ntuple_rdoc.html]
59
- # 1. {Monte-Carlo Integration}[link:files/rdoc/monte_rdoc.html]
60
- # 1. {Simulated Annealing}[link:files/rdoc/siman_rdoc.html]
61
- # 1. {Ordinary Differential Equations}[link:files/rdoc/odeiv_rdoc.html]
62
- # 1. {Interpolation}[link:files/rdoc/interp_rdoc.html]
63
- # 1. {Numerical Differentiation}[link:files/rdoc/diff_rdoc.html]
64
- # 1. {Chebyshev Approximations}[link:files/rdoc/cheb_rdoc.html]
65
- # 1. {Series Acceleration}[link:files/rdoc/sum_rdoc.html]
66
- # 1. {Wavelet Transforms}[link:files/rdoc/wavelet_rdoc.html] (GSL-1.6 feature)
67
- # 1. {Discrete Hankel Transforms}[link:files/rdoc/dht_rdoc.html]
68
- # 1. {One dimensional Root-Finding}[link:files/rdoc/roots_rdoc.html]
69
- # 1. {One dimensional Minimization}[link:files/rdoc/min_rdoc.html]
70
- # 1. {Multidimensional Root-Finding}[link:files/rdoc/multiroot_rdoc.html]
71
- # 1. {Multidimensional Minimization}[link:files/rdoc/multimin_rdoc.html]
72
- # 1. {Least-Squares Fitting}[link:files/rdoc/fit_rdoc.html]
73
- # 1. {Nonlinear Least-Squares Fitting}[link:files/rdoc/nonlinearfit_rdoc.html]
74
- # 1. {Basis Splines}[link:files/rdoc/bspline_rdoc.html]
75
- # 1. {Physical Constants}[link:files/rdoc/const_rdoc.html]
76
- # 1. {Graphics}[link:files/rdoc/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:files/rdoc/rngextra_rdoc.html]
79
- # 1. {Tensor manipulations}[link:files/rdoc/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:files/rdoc/ndlinear_rdoc.html]
85
- # 1. {ALF: associated Legendre polynomials}[link:files/rdoc/alf_rdoc.html]
86
- # 1. {NArray compatibilities}[link:files/rdoc/narray_rdoc.html]
87
- # 1. {Changes since Ruby/GSL 1.10.3}[link:files/rdoc/changes_rdoc.html]
88
- # 1. {GNU Free Documentation Licence}[http://www.gnu.org/software/gsl/manual/html_node/GNU-Free-Documentation-License.html"target="_top]
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
+ # 1. {GNU Free Documentation Licence}[https://gnu.org/software/gsl/manual/html_node/GNU-Free-Documentation-License.html]
89
89
  #
90
- # {next}[link:files/rdoc/intro_rdoc.html]
90
+ # {next}[link:rdoc/intro_rdoc.html]
91
91
  #
92
- # {top}[link:files/rdoc/index_rdoc.html]
92
+ # {top}[link:index.html]
93
93
  #