gsl 1.15.3 → 1.16.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
data/ChangeLog CHANGED
@@ -1,84 +1,129 @@
1
- Sat Feb 26 08:18:45 PST 2011
2
- * Ruby/GSL 1.14.7
3
- * Fix conversion of non-DFLOAT NArray to GSL::Vector and
4
- GSL::Vector::Complex.
5
-
6
- Thu Feb 24 10:27:08 PST 2011
7
- * Ruby/GSL 1.14.6
8
- * Add Vector::Complex support to NArray conversions
9
- * Raise exception when trying to create View from NArray object of
10
- incompatible type.
11
-
12
- Sun Nov 14 17:01:07 PST 2010
13
- * Ruby/GSL 1.14.5
14
- * Convert docs from rdtool to rdoc
15
- * Fix object id handling bugs on 64-bit systems
16
- * Fix Vector's handling of Range parameters
17
-
18
- Wed Sep 29 00:37:44 BOT 2010
19
- * Modification for ruby-1.9.2
20
- * Replaced STR2CSTR to StringValuePtr
21
-
22
- Mon Mar 22 23:54:07 MDT 2010
23
- * GSL-1.14 support
24
- * Added GSL::Multiset class
25
- * Added GSL::Function#glfixed(a, b table)
26
-
27
- Sun Aug 16 19:01:31 BOT 2009
28
- * Added Non-negative Matrix Factorization (NMF) support (by Roman Shterenzon)
29
-
30
- Sat Aug 8 22:36:24 BOT 2009
31
- * Added GSL-1.13 features:
32
- * Added GSL::Monte::Miser#params_get, GSL::Monte::Vegas#params_get
33
- * Added GSL::BSpline::greville_abscissa(i)
34
- * Added GSL::Poly#eval_derivs(x)
35
- * Added a new minimization algorithm "quad_golden"
36
- * Added a new multimin algorithm "nmsimplex2rand"
37
-
38
- Tue Jun 9 10:42:30 JST 2009
39
- * Fixed bug in linalg.c (bug [#25842])
40
-
41
- Thu Feb 2 12:16:38 JST 2009
42
- * Fixed a bug in GSL::Histogram.alloc_uniform() (bug [#23040])
43
- * Fixed a bug in GSL::Vector#/ (bug [#23334])
44
-
45
- Thu Nov 6 17:34:18 JST 2008
46
- * Match with the tensor extension version 0.99
47
- * now not compatible for the versions older than tensor-0.97.
48
-
49
- Sat Jul 26 08:23:45 JST 2008
50
- * GSL::Poly.eval now handles complex numbers (GSL-1.11)
51
- * Added new quasi-random generators "halton" and "reversehalton"
52
- * Added a module function GSL::MultiFit::linear_residuals() (GSL-1.11)
53
- * Fixed a bug in ODE solver
54
-
55
- Mon Jun 30 22:07:24 JST 2008
56
- * Fixed GSL::Vector#normalize (#20865)
57
-
58
- Mon May 26 19:21:15 JST 2008
59
- * Fixed a bug in GSL::Matrix::to_v (#19757)
60
- * Fixed a bug in GSL::Vector::Int multiplication (#19924)
61
-
62
- Sat Dec 8 23:44:47 2007
63
- * Version 1.10.3
64
-
65
- Tue Dec 2 16:30:15 2007
66
- * Improved GSL::Vector#get for a Range arg
67
- * Improved GSL::Vector#concat for an Array arg
68
- * Fixed a bug in GSL::Matrix.alloc with column vector arguments
69
-
70
- Thu Dec 2 10:58:37 2007
71
- * Added methods GSL::Vector#pow(p), GSL::Vector#pow!(p)
72
-
73
- Wed Oct 17 04:04:39 2007
74
- * Fixed a bug in poly_source.c
75
-
76
- Sun Oct 7 14:18:31 2007
77
- * Version 1.10.0
78
- * ndlinear extension support
79
-
80
- Sat Sep 22 01:49:57 2007
81
- Added GSL-1.10 features
1
+ # markup: rd
2
+
3
+ == Thu Jul 03 2015
4
+ * Ruby/GSL 1.16.0.6
5
+ * rb-gsl and gsl are now the same gem
6
+
7
+ == Thu Jul 02 2015
8
+ * Ruby/GSL 1.16.0.5
9
+ * Optional narray support
10
+ * Drop Ruby 1.8 support
11
+ * Drop support for GSL < 1.15
12
+
13
+ == Fri Dec 19 2014
14
+ * Ruby/GSL 1.16.0.4
15
+ * Optimize and extract multiplication and division operations on Fixnum
16
+ and Float. Pull request #8 by Veselin Vasilev.
17
+ * Fixed division in GSL::Oper for GSL::Vector::Col. Issue #9.
18
+
19
+ == Tue Oct 21 2014
20
+ * Ruby/GSL 1.16.0.3
21
+ * Fixed RDoc issues. Issue #6 by @bigtunacan.
22
+ * Fixed $LOAD_PATH problem. Pull request #7 by Takahiro SATOH.
23
+
24
+ == Wed Jul 9 2014
25
+ * Ruby/GSL 1.16.0.2
26
+ * Fixed linking problem.
27
+
28
+ == Thu Apr 24 2014
29
+ * Ruby/GSL 1.16.0.1
30
+ * Extensive cleanup.
31
+ * Fixed linking problems.
32
+ * Required Ruby version >= 1.8.7.
33
+
34
+ == Fri Jan 24 2014
35
+ * Ruby/GSL 1.16.0
36
+ * GSL-1.16 support.
37
+
38
+ == Fri Jan 24 2014
39
+ * Ruby/GSL 1.15.3.2
40
+ * Windows compatibility.
41
+ * Ruby 2.x compatibility.
42
+ * Ported tests to Test::Unit.
43
+ * Silenced compilation warnings.
44
+ * Switched to rake-compiler for compilation.
45
+
46
+ == Sat Feb 26 2011
47
+ * Ruby/GSL 1.14.7
48
+ * Fix conversion of non-DFLOAT NArray to GSL::Vector and
49
+ GSL::Vector::Complex.
50
+
51
+ == Thu Feb 24 2011
52
+ * Ruby/GSL 1.14.6
53
+ * Add Vector::Complex support to NArray conversions
54
+ * Raise exception when trying to create View from NArray object of
55
+ incompatible type.
56
+
57
+ == Sun Nov 14 2010
58
+ * Ruby/GSL 1.14.5
59
+ * Convert docs from rdtool to rdoc
60
+ * Fix object id handling bugs on 64-bit systems
61
+ * Fix Vector's handling of Range parameters
62
+
63
+ == Wed Sep 29 2010
64
+ * Modification for ruby-1.9.2
65
+ * Replaced STR2CSTR to StringValuePtr
66
+
67
+ == Mon Mar 22 2010
68
+ * GSL-1.14 support
69
+ * Added GSL::Multiset class
70
+ * Added GSL::Function#glfixed(a, b table)
71
+
72
+ == Sun Aug 16 2009
73
+ * Added Non-negative Matrix Factorization (NMF) support (by Roman Shterenzon)
74
+
75
+ == Sat Aug 8 2009
76
+ * Added GSL-1.13 features:
77
+ * Added GSL::Monte::Miser#params_get, GSL::Monte::Vegas#params_get
78
+ * Added GSL::BSpline::greville_abscissa(i)
79
+ * Added GSL::Poly#eval_derivs(x)
80
+ * Added a new minimization algorithm "quad_golden"
81
+ * Added a new multimin algorithm "nmsimplex2rand"
82
+
83
+ == Tue Jun 9 2009
84
+ * Fixed bug in linalg.c (bug [#25842])
85
+
86
+ == Thu Feb 2 2009
87
+ * Fixed a bug in GSL::Histogram.alloc_uniform() (bug [#23040])
88
+ * Fixed a bug in GSL::Vector#/ (bug [#23334])
89
+
90
+ == Thu Nov 6 2008
91
+ * Match with the tensor extension version 0.99
92
+ * now not compatible for the versions older than tensor-0.97.
93
+
94
+ == Sat Jul 26 2008
95
+ * GSL::Poly.eval now handles complex numbers (GSL-1.11)
96
+ * Added new quasi-random generators "halton" and "reversehalton"
97
+ * Added a module function GSL::MultiFit::linear_residuals() (GSL-1.11)
98
+ * Fixed a bug in ODE solver
99
+
100
+ == Mon Jun 30 2008
101
+ * Fixed GSL::Vector#normalize (#20865)
102
+
103
+ == Mon May 26 2008
104
+ * Fixed a bug in GSL::Matrix::to_v (#19757)
105
+ * Fixed a bug in GSL::Vector::Int multiplication (#19924)
106
+
107
+ == Sat Dec 8 2007
108
+ * Version 1.10.3
109
+
110
+ == Tue Dec 2 2007
111
+ * Improved GSL::Vector#get for a Range arg
112
+ * Improved GSL::Vector#concat for an Array arg
113
+ * Fixed a bug in GSL::Matrix.alloc with column vector arguments
114
+
115
+ == Thu Dec 2 2007
116
+ * Added methods GSL::Vector#pow(p), GSL::Vector#pow!(p)
117
+
118
+ == Wed Oct 17 2007
119
+ * Fixed a bug in poly_source.c
120
+
121
+ == Sun Oct 7 2007
122
+ * Version 1.10.0
123
+ * ndlinear extension support
124
+
125
+ == Sat Sep 22 2007
126
+ * Added GSL-1.10 features
82
127
  * Added generalized eigensystem methods
83
128
  * Added method GSL::Stats::correlation(v1, v2) to compute
84
129
  Pearson correlation of two datasets
@@ -92,476 +137,489 @@ Sat Sep 22 01:49:57 2007
92
137
  and GSL::Linalg::Chomplex::Cholesky::svx
93
138
  * Added method GSL::hypot3(x, y, z)
94
139
 
95
- Sat Aug 11 00:45:48 2007
96
- * Modified ext/extconf.rb: Check gsl_stats_correlation()
97
-
98
- Sun Aug 5 15:46:51 2007
99
- * Improved GSL::Vector::filescan()
100
- Tue May 15 13:35:49 2007
101
- * Fixed a bug in Vector#get (Thank to Daigo Moriwaki)
102
-
103
- Sun Feb 18 00:08:15 2007
104
- * Completed GSL-1.8.90 features
105
- * Change names "unsymm" ---> "nonsymm" for non-symmetric eigen systems
106
- * Added Mathieu functions
107
- * Added Vector#ispos, isneg
108
- * Added knuthran2002 generator
109
- * Added a new minimization method GSL::MultiMin::FdfMinimizer::BFGS2
110
-
111
- Sun Dec 31 01:34:29 2006
112
- * Remove the module function GSL::equal?, which breaks the Ruby policy.
113
-
114
- Sun Dec 24 16:51:34 2006
115
- * Added Basis splines
116
- * CQP and Bundle extentions support
117
-
118
- Wed Dec 13 01:02:09 2006
119
- * OOL extension support (OOL version 0.2)
120
- * OOL: Open Optimization Library
121
-
122
- Mon Dec 11 01:04:19 2006
123
- * Add a quasi-random sequence generator hdsobol
124
- (require the qrngextra extension)
125
-
126
- Tue Sep 26 18:58:26 BOT 2006
127
- * Fixed a bug in GSL::Vector#*
128
-
129
- Sun Sep 24 10:37:49 BOT 2006
130
- * Fixed a bug in GSL::Matrix.vandermonde()
131
- * Added methods GSL::Vector#join, zip, cumsum, cumprod
132
-
133
- Thu Sep 21 20:03:39 BOT 2006
134
- * Added methods to calculate eigenvectors of nonsymmetric matrices
135
- * Added test scripts tests/eigen/unsymm.rb, tests/eigen/unsymmv.rb
136
-
137
- Wed Aug 23 00:51:12 BOT 2006
138
- * Added methods to calculate eigenvalues of nonsymmetric matrices
139
-
140
- Fri Aug 18 20:47:05 BOT 2006
141
- * Fixed bug in Sf::hypot
142
-
143
- Sat Apr 29 12:29:10 JST 2006
144
- * Applied patch provided by Cameron McBride, to fix a bug in
145
- randist.c
146
- * Applied patched by zunda to fix some test/ scripts.
147
-
148
- Thu Apr 13 22:21:02 JST 2006
149
- * Version 1.8.0
150
- * Added cumulative distribution functions under the module GSL::Cdf:
151
- binomial, poisson, geometric, negative binomial, pascal and hypergeometric.
152
- * Added module functions GSL::Cdf::beta_Pinv, beta_Qinv, fdist_Pinv, and
153
- fdist_Qinv.
154
- * Added the multilinear fit estimator function GSL::MultiFit::linear_est.
155
- * Added new random variate generators,
156
- GSL::Ran::gaussian_ziggurat and gamma_mt.
157
- * Added Debye functions for n=5 and n=6, as
158
- GSL::Sf::debye_5 and debye_6.
159
- * Added GSL::Spline#min_size
160
- * Added the Debye unit to physical constants.
161
-
162
- Fri Dec 2 19:05:30 JST 2005
163
- * Singleton method "new" ---> "alloc"
164
-
165
- Sun Nov 27 14:01:12 JST 2005
166
- * Apply patch by zunda to improve multifit.
167
- * Fix bug in dirac.c
168
-
169
- Tue Apr 3 JST 2005
170
- * Added Vector#collect!, Matrix#collect!
171
- * Added lib/rbgsl.rb, in which the GSL module is not included by default
172
-
173
- Wed Apr 27 21:21:58 JST 2005
174
- * The following Linalg methods now can handle NArray objects:
175
- * GSL::Linalg::
176
- * LU.decomp(m)
177
- * LU.solve(lu, b)
178
- * LU.svx(lu, bx)
179
- * LU.det(lu, sign)
180
- * LU.lndet(lu)
181
- * LU.invert(lu, perm)
182
- * QR.decomp(m)
183
- * QR.solve(qr, tau, b)
184
- * QR.svx(qr, tau, bx)
185
- * SV.decomp(m)
186
- * SV.solve(u, v, s, b)
187
- * SV.svx(u, v, s, bx)
188
- * Cholesky.decomp(m)
189
- * Cholesky.solve(u, v, s, b)
190
- * Cholesky.svx(u, v, s, bx)
191
- * HH.solve(m, b)
192
- * HH.svx(m, bx)
193
-
194
- Mon Apr 18 23:27:16 JST 2005
195
- * Improved gsl_narray.c (thanks to T. Horinouchi)
196
- * Modified extconf.rb
197
- * Automatic finding of NArray
198
- * Applied a patch by zunda
199
-
200
- Thu Apr 7 18:26:08 JST 2005
201
- * Modified extconf.rb
202
-
203
- Mon Mar 21 23:17:56 JST 2005
204
- * Version 1.6.2
205
-
206
- Sat Mar 19 01:00:15 JST 2005
207
- * Fixed Blas.dgemm, .zgemm
208
- * Fixed method re-definitions
209
-
210
- Tue Mar 15 23:20:15 JST 2005
211
- * Added class GSL::Block::Byte, GSL::Block::Index
212
- * Added NArray-like methods, Vector#eq, ne, gt, where, any? etc.
213
- * Added methods Vector#floor, Vector#ceil,
214
- and Vector#round (if the system has)
215
-
216
- Sat Mar 12 14:49:47 JST 2005
217
- * Fixed Vector#get
218
-
219
- Sat Feb 26 11:18:22 JST 2005
220
- * Ruby 1.9.0 support
221
-
222
- Sat Feb 5 03:24:28 JST 2005
223
- * Version 1.6.1
224
-
225
- Wed Jan 26 23:28:07 JST 2005
226
- * Added in-place FFT methods
227
- * Fixed FFT document
228
-
229
- Thu Jan 20 00:55:26 JST 2005
230
- * Added Vector#decimate, Vector#diff
231
- * Added Matrix#rot90
232
- * Fixed Matrix::Complex
233
-
234
- Thu Jan 06 18:46:02 JST 2005
235
- * Some methods which receive GSL::Vector now can also manipulate
236
- NArray objects.
237
- * Special functions
238
- * Probability distributions
239
- * Statistics
240
- * FFTs
241
- * Wavelet transforms
242
- * Interpolations
243
- * Serices accelerations
244
- * Added method Vector#decimate
245
- * Sf::exp now can receive Complex or Vector::Complex
246
-
247
- Tue Jan 04
248
- * Version 1.6.0
249
-
250
- Thu Dec 30 04:34:14 JST 2004 Yoshiki Tsunesada
251
- * Update for GSL-1.5.90
252
- * Added Sf::psi_1
253
- * Added ODE stepper rk2simp
254
- * Added LQ, PTLQ decompositions
255
- * Added methods Cdf::exppow_P, Cdf::exppow_Q
256
-
257
- Mon Dec 27 22:19:55 JST 2004 Yoshiki Tsunesada
258
- * All Ruby/GSL classes are defined as derivatives of the base class
259
- GSL::Object.
260
- * Defined the method GSL::Object#info
261
- * Added Vector#histogram
262
- * Added Vector.filescan
263
- * Modified the methods Histogram#increment, accumulate
264
- * Added methods Poly.fit, Poly.wfit, MultiFit.polyfit
265
- * Added methods Vector::Complex#abs2, abs, arg
266
- * Modified FFT methods: now they return FFTed data as a new vector,
267
- and do not destroy the input vector.
268
-
269
- Sat Dec 11 21:45:30 JST 2004 Yoshiki Tsunesada
270
- * Modified Histogram#integral
271
-
272
- Fri Dec 10 14:28:38 JST 2004 Yoshiki Tsunesada
273
- * Added methods Histogram#reverse, Histogram2d#integrate,
274
- Histogram2d#normalize
275
-
276
- Mon Dec 6 01:15:03 JST 2004 Yoshiki Tsunesada
277
- * Version 1.5.4
278
-
279
- Fri Dec 3 22:33:46 JST 2004 Yoshiki Tsunesada
280
- * Added Histogram#rebin
281
-
282
- Fri Nov 26 21:17:17 JST 2004 Yoshiki Tsunesada
283
- * Added method Vector#to_m
284
- * Added methods Matrix#reverse_rows, Matrix#reverse_columns
285
-
286
- Tue Nov 16 23:35:27 JST 2004 Yoshiki Tsunesada
287
- * The method Matrix#** is now obsolete, use "*"
288
- for matrix multiplication instead.
289
- * Improved Matrix#* and Vetor#*
290
- * Added methods Vector#to_m_diagonal, Vector#to_m_circulant,
291
- Vector#collect
292
- * Added methods Matrix.hilbert, Matrix.invhilbert, Matrix.pascal,
293
- Matrix.vandermonde, Matrix.toeplitz, Matrix.circulant
294
- * Added methods Vector.indgen, Vector#indgen,
295
- Matrix.indgen, Matrix#indgen (mimics NArray)
296
- * Added class GSL::Histogram3d
297
- * Checked GSL lower version compatibilities
298
- * gsl-1.0 ~ gsl-1.5: OK
299
- * gsl-0.9.4: OK
300
- * gsl-0.9.3 or older: not tested
301
- * gsl-1.6 (development version, CVS Nov2004): OK
302
-
303
- Sun Nov 7 00:56:11 JST 2004 Yoshiki Tsunesada
304
- * Support the gsl_tensor package
305
- * http://sources.redhat.com/ml/gsl-discuss/2004-q4/msg00053.html
306
- * Added class GSL::Tensor, GSL::Tensor::Int
307
- * The methods Vector#get, Vector#[] now receive multiple
308
- arguments, or an Array, or a Range object.
309
-
310
- Thu Nov 4 21:13:38 JST 2004 Yoshiki Tsunesada
311
- * Added class GSL::Histogram::Integral, which represents the
312
- cumulative distribution.
313
- * Added method GSL::Histogram#integrate, which creates a
314
- GSL::Histogram::Integral object.
315
- * Added methods GSL::Histogram2d#xproject, yproject, normalize, increment2.
316
-
317
- Sun Oct 31 02:34:28 JST 2004 Yoshiki Tsunesada
318
- * Fix the document for Polynomials
319
- * Added methods Poly::hermite(n), Poly::cheb(n), and Poly::cheb_II(n) etc..
320
- * Added method Poly#compan, which returns the companion matrix.
321
- * The method Matrix#/ is improved: if a Vector is given, this method
322
- solves the linear system.
323
-
324
- Mon Oct 25 01:25:12 JST 2004 Yoshiki Tsunesada
325
- * Split the source file "randist.c" into "randist.c" and "cdf.c"
326
- * Split the source file "diff.c" into "diff.c" and "deriv.c"
327
- * Split the source file "interp.c" into "interp.c" and "spline.c"
328
- * Added methods Vector#abs, sqrt, square, normalize
329
- * Added sample scripts odeiv/frei1.rb, fft/frei2.rb
330
- and eigen/qhoscillator.rb, which deal with quantum mechanical
331
- calculations. These are translated from the C++ code in the
332
- Harald Wiedemann's textbook "Numerische Physik"
333
- (Springer 2004, ISBN 3-540-40774-X).
334
-
335
- Sat Oct 23 19:08:02 JST 2004 Yoshiki Tsunesada
336
- * Added a method GSL::Vector#logspace2. The following two are
337
- equivalent:
338
- v1 = Vector.logspace(1, 3, 5)
339
- v2 = Vector.logspace2(10, 1000, 5)
340
-
341
- Tue Oct 19 23:23:38 JST 2004 Yoshiki Tsunesada
342
- * Support the rngextra package
343
- * http://www.network-theory.co.uk/download/rngextra/
344
- * Added two random number generators "rngextra_rng1" and "rngextra_rng2"
345
- * Fixed a bug in the method Vector#subvector_with_stride
346
-
347
- Mon Oct 18 22:22:21 JST 2004 Yoshiki Tsunesada
348
- * Added a sample script dht.rb
349
-
350
- Fri Oct 8 23:09:00 JST 2004 Yoshiki Tsunesada
351
- * Version 1.5.3
352
-
353
- Thu Oct 7 22:47:59 JST 2004 Yoshiki Tsunesada
354
- * The methods Vector.graph and GSL::graph improved.
355
- * Added sample scripts of special functions and probability distribution
356
- functions.
357
-
358
- Sat Oct 2 23:13:49 JST 2004 Yoshiki Tsunesada
359
- * Discrete wavelet transform (experimental)
360
- * Presently this is only for CVS trackers,
361
- since DWT is not supported in the latest version GSL-1.5.
362
- * Added methods Vector.connect, Vector#connect
363
-
364
- Thu Sep 30 22:56:47 JST 2004 Yoshiki Tsunesada
365
- * The methods Vector#[] and Vector#[]= accept an index of
366
- negative integer. For example, v[-1] returns the last element
367
- of the vector v, v[-2] does the second last, and so on.
368
-
369
- Fri Sep 24 21:52:06 JST 2004 Yoshiki Tsunesada
370
- * Fixed bug in Sf::legendre_Ql
371
-
372
- Wed Sep 1 19:02:42 JST 2004 Yoshiki Tsunesada
373
- * Version 1.5.2
374
-
375
- Fri Aug 27 03:18:46 JST 2004 Yoshiki Tsunesada
376
- * Experimental implementation of GNU plotutils graph and GNUPLOT interfaces
377
- * Added unary minus operators for GSL::Vector, GSL::Matrix
378
-
379
- Thu Aug 19 14:28:08 JST 2004 Yoshiki Tsunesada
380
- * Added class GSL::Matrix::Int
381
- * Correct descriptions of GSL::Matrix#get_row, get_col
382
- * Changed behaviour of methods NArray#to_gv, NArray#to_gm,
383
- added methods NArray#to_gv_view, NArray#to_gm_view
384
-
385
- Wed Aug 18 02:38:20 JST 2004
386
- * Added method GSL::set_error_handler
387
-
388
- Tue Aug 17 20:59:39 JST 2004
389
- * Version 1.5.1
390
-
391
- Sat Aug 14 16:27:05 JST 2004 Yoshiki Tsunesada
392
- * Changed behaviour of the methods Odeiv::Evolve#apply, Odeiv::Solver#apply
393
- * Fixed bug in GSL::Histogram#get
394
- * Fixed buf in GSL::Vector#matrix_view_with_tda
395
- * Added class GSL::Vector::Int
396
- * Added test suite
397
-
398
- Wed Aug 11 14:39:17 JST 2004 Yoshiki Tsunesada
399
- * Fixed bug in GSL::Sf::legendle_Ql_e
400
- * Fixed bug in GSL::MultiFit.linear
401
-
402
- Tue Aug 10 10:31:21 JST 2004 Yoshiki Tsunesada
403
- * Fixed bugs in GSL::Cdf::gumbel2_P, gumbel2_Q
404
- * Version 1.5.0
405
-
406
- Fri Aug 6 00:58:29 JST 2004 Yoshiki Tsunesada
407
- * Fixed bug in Histogram2d.new_uniform
408
-
409
- 4.Aug.2004
410
- * Correct source code errors in interp.c, multifit.c
411
-
412
- 2.Aug.2004
413
- * Added methods GSL::Vector#dot (inner product)
414
- * Added classes GSL::Vector::Col < GSL::Vector,
415
- GSL::Vector::Col::View < GSL::Vector::Col
416
-
417
- 1.Aug.2004
418
- * Version 0.9.9
419
-
420
- 30.Jul.2004
421
- * Added methods GSL::Rng.default_seed, GSL::Rng.default_seed=(seed)
422
-
423
- 26.Jul.2004
424
- * Cumulative distribution functions
425
- * Changed module path GSL::Ran:: ---> GSL::Cdf
426
- * Constants GSL::VERSION, GSL::RUBY_GSL_VERSION defined
427
-
428
- 24.Jul.2004
429
- * Experimental implementation of discrete wavelet transforms (tests/wavelet)
430
-
431
- 22.Jul.2004
432
- * Elementary functions as GSL::sin now can take argument of Integer, Float,
433
- Array, Vector or Matrix.
434
- * Strict type check
435
-
436
- 20.Jul.2004
437
- * Added methods GSL::heapsort, Vector#heapsort, Vector::Complex#heapsort
438
- * Added methods GSL::heapsort_index, Vector#heapsort_index,
439
- Vector::Complex#heapsort_index
440
- * version 0.9.4
441
-
442
- 18.Jul.2004
443
- * Added missing functions GSL::Sf::legendre_Ql
444
- * Added missing functions GSL::Sf::psi_e
445
- * Added missing functions GSL::Sf::zetam1, zetam1_int
446
-
447
- 17.Jul.2004
448
- * Added GSL::Eigen::Symmv::sort, GSL::Eigen::Hermv::sort
449
- * Update GSL::Monte
450
-
451
- 15.Jul.2004
452
- * Version 0.9.2
453
- * Added methods Matrix#each_row, Matrix#each_col
454
- * Added methods Matrix::Complex#each_row, Matrix::Complex#each_col
455
- * Fixed bug in Complex::polar
456
- * Fixed bug in Complex#abs, arg, abs2, logabs
457
-
458
- 13.Jul.2004
459
- * Added Matrix#trace, Matrix::Complex#trace
460
-
461
- 11.Jul.2004
462
- * version 0.9.0
463
- * Householder Transformations
464
- * LU decomposition for complex matrices
465
- * All the GSL functions implemented.
466
-
467
- 10.Jul.2004
468
- * Blas level 3
469
- * Fixed GSL::Vector::sort_index
470
-
471
- 8.Jul.2004
472
- * Correct document on random distributions
473
-
474
- 7.Jul.2004
475
- * Fixed bug in the method GSL::Sf::coulomb_wave_sphF_array
476
-
477
- 6.Jul.2004
478
- * GSL 1.5 support
479
- * Fixed a bug in the method GSL::Sf::bessel_sequence_Jnu_e
480
-
481
- 5.Jul.2004
482
- * Compile test with -Wall option:
483
- * remove unused variables, check missing prototype declarations
484
- * Fixed a bug in the method GSL::Multimin::test_size (wrong binding)
485
-
486
- 30.Jun.2004
487
- * ver 0.4.7
488
-
489
- 28.Jun.2004
490
- * Switch rb_f_lambda() and rb_block_proc(), for proper ruby version.
491
-
492
- 20.Jun.2004
493
- * Added Linalg::balance_comlumns(A, D) and Matrix#balance_columns(D)
494
- * BLAS support
495
- * Level 1
496
- * Level 2
497
-
498
- 19.Jun.2004
499
- * Support gsl-1.4.90
500
- * Added Stefan-Boltzmann constant, Thomson scattering cross section
501
- * Module Deriv
502
-
503
- 13.Jun.2004
504
- * Fixed a bug in the sample script integration/friedmann.rb
505
- * Improved interfaces of polynomial equations
506
- * Correct the document on GSL::Complex
507
-
508
- 10.Jun.2004
509
- * ver 0.4.2
510
- * The module GSL::Math removed
511
- * The module name GSL::Const is changed to GSL::CONST
512
-
513
- 09.Jun.2004
514
- * ver 0.4.1
515
- * Add random number generators borosh13, coveyou, fishman18,
516
- fishman20, fishman2x, knuthran, knuthran2, lecuyer21, waterman14.
517
- * Correct the documentation on random number generators
518
- * Add functions expint_E1_scaled,expint_E2_scaled, and others
519
- * Add methods Rng::fwrite, fread
520
- * Add function binomial_tpe
521
-
522
- 05.Jun.2004
523
- * 0.4.0
524
-
525
- 02.Jun.2004
526
- * rb_gc_mark
527
- * Implemented simulated annealing, Ntuples
528
-
529
- 25.Apr.2004
530
- * Vector, Matrix, Matrix::Complex coerce
531
-
532
- 24.Apr.2004 version 0.3.11
533
- * GSL::Complex, coerce
534
-
535
- 22.Apr.2004 version 0.3.10
536
- * polish sources of special functions
537
-
538
- 18.Apr.2004, version 0.3.9
539
- * bug fix Eigensystems, Interpolation
540
-
541
- 16.Apr.2004
542
- * bug fix Vector, Matrix, Linalg
543
-
544
- 14.Apr.2004, version 0.3.8
545
- * N-tuples
546
- * Improvement in NArray object conversions (thanks to S. Nishizawa)
547
-
548
- 13.Apr.2004
549
- * Poly divided-difference reporesentation, Taylor expansion
550
- * Apply patch by S. Nishizawa, for type checks in C code,
551
- and some modifications in sample scripts
552
-
553
- 12.Apr.2004, version 0.3.7
554
- * Add mathematical functions ldexp, frexp
555
- * Add gsl_sf_hazard function
556
- * QRng bug fix
557
- * GSL::Stats module
558
-
559
- version 0.3.6 Monte-Carlo integration
560
- version 0.3.5 Multidimensional minimization
561
- version 0.3.4 Combinations, One dimensional minimization, Multidimensional
562
- root-finding
563
- version 0.3.3 Nonlinear least-squared fitting
564
- versoin 0.3.2 Least-squared fitting
565
- version 0.3.1 One dimensional root-finding
566
- version 0.3.0 FFTs, Ordinary differential equations
567
- 2002 version 0.2.5
140
+ == Sat Aug 11 2007
141
+ * Modified ext/extconf.rb: Check gsl_stats_correlation()
142
+
143
+ == Sun Aug 5 2007
144
+ * Improved GSL::Vector::filescan()
145
+ == Tue May 15 2007
146
+ * Fixed a bug in Vector#get (Thank to Daigo Moriwaki)
147
+
148
+ == Sun Feb 18 2007
149
+ * Completed GSL-1.8.90 features
150
+ * Change names "unsymm" ---> "nonsymm" for non-symmetric eigen systems
151
+ * Added Mathieu functions
152
+ * Added Vector#ispos, isneg
153
+ * Added knuthran2002 generator
154
+ * Added a new minimization method GSL::MultiMin::FdfMinimizer::BFGS2
155
+
156
+ == Sun Dec 31 2006
157
+ * Remove the module function GSL::equal?, which breaks the Ruby policy.
158
+
159
+ == Sun Dec 24 2006
160
+ * Added Basis splines
161
+ * CQP and Bundle extentions support
162
+
163
+ == Wed Dec 13 2006
164
+ * OOL extension support (OOL version 0.2)
165
+ * OOL: Open Optimization Library
166
+
167
+ == Mon Dec 11 2006
168
+ * Add a quasi-random sequence generator hdsobol
169
+ (require the qrngextra extension)
170
+
171
+ == Tue Sep 26 2006
172
+ * Fixed a bug in GSL::Vector#*
173
+
174
+ == Sun Sep 24 2006
175
+ * Fixed a bug in GSL::Matrix.vandermonde()
176
+ * Added methods GSL::Vector#join, zip, cumsum, cumprod
177
+
178
+ == Thu Sep 21 2006
179
+ * Added methods to calculate eigenvectors of nonsymmetric matrices
180
+ * Added test scripts tests/eigen/unsymm.rb, tests/eigen/unsymmv.rb
181
+
182
+ == Wed Aug 23 2006
183
+ * Added methods to calculate eigenvalues of nonsymmetric matrices
184
+
185
+ == Fri Aug 18 2006
186
+ * Fixed bug in Sf::hypot
187
+
188
+ == Sat Apr 29 2006
189
+ * Applied patch provided by Cameron McBride, to fix a bug in
190
+ randist.c
191
+ * Applied patched by zunda to fix some test/ scripts.
192
+
193
+ == Thu Apr 13 2006
194
+ * Version 1.8.0
195
+ * Added cumulative distribution functions under the module GSL::Cdf:
196
+ binomial, poisson, geometric, negative binomial, pascal and hypergeometric.
197
+ * Added module functions GSL::Cdf::beta_Pinv, beta_Qinv, fdist_Pinv, and
198
+ fdist_Qinv.
199
+ * Added the multilinear fit estimator function GSL::MultiFit::linear_est.
200
+ * Added new random variate generators,
201
+ GSL::Ran::gaussian_ziggurat and gamma_mt.
202
+ * Added Debye functions for n=5 and n=6, as
203
+ GSL::Sf::debye_5 and debye_6.
204
+ * Added GSL::Spline#min_size
205
+ * Added the Debye unit to physical constants.
206
+
207
+ == Fri Dec 2 2005
208
+ * Singleton method "new" ---> "alloc"
209
+
210
+ == Sun Nov 27 2005
211
+ * Apply patch by zunda to improve multifit.
212
+ * Fix bug in dirac.c
213
+
214
+ == Tue Apr 3 JST 2005
215
+ * Added Vector#collect!, Matrix#collect!
216
+ * Added lib/rbgsl.rb, in which the GSL module is not included by default
217
+
218
+ == Wed Apr 27 2005
219
+ * The following Linalg methods now can handle NArray objects:
220
+ * GSL::Linalg::
221
+ * LU.decomp(m)
222
+ * LU.solve(lu, b)
223
+ * LU.svx(lu, bx)
224
+ * LU.det(lu, sign)
225
+ * LU.lndet(lu)
226
+ * LU.invert(lu, perm)
227
+ * QR.decomp(m)
228
+ * QR.solve(qr, tau, b)
229
+ * QR.svx(qr, tau, bx)
230
+ * SV.decomp(m)
231
+ * SV.solve(u, v, s, b)
232
+ * SV.svx(u, v, s, bx)
233
+ * Cholesky.decomp(m)
234
+ * Cholesky.solve(u, v, s, b)
235
+ * Cholesky.svx(u, v, s, bx)
236
+ * HH.solve(m, b)
237
+ * HH.svx(m, bx)
238
+
239
+ == Mon Apr 18 2005
240
+ * Improved gsl_narray.c (thanks to T. Horinouchi)
241
+ * Modified extconf.rb
242
+ * Automatic finding of NArray
243
+ * Applied a patch by zunda
244
+
245
+ == Thu Apr 7 2005
246
+ * Modified extconf.rb
247
+
248
+ == Mon Mar 21 2005
249
+ * Version 1.6.2
250
+
251
+ == Sat Mar 19 2005
252
+ * Fixed Blas.dgemm, .zgemm
253
+ * Fixed method re-definitions
254
+
255
+ == Tue Mar 15 2005
256
+ * Added class GSL::Block::Byte, GSL::Block::Index
257
+ * Added NArray-like methods, Vector#eq, ne, gt, where, any? etc.
258
+ * Added methods Vector#floor, Vector#ceil,
259
+ and Vector#round (if the system has)
260
+
261
+ == Sat Mar 12 2005
262
+ * Fixed Vector#get
263
+
264
+ == Sat Feb 26 2005
265
+ * Ruby 1.9.0 support
266
+
267
+ == Sat Feb 5 2005
268
+ * Version 1.6.1
269
+
270
+ == Wed Jan 26 2005
271
+ * Added in-place FFT methods
272
+ * Fixed FFT document
273
+
274
+ == Thu Jan 20 2005
275
+ * Added Vector#decimate, Vector#diff
276
+ * Added Matrix#rot90
277
+ * Fixed Matrix::Complex
278
+
279
+ == Thu Jan 06 2005
280
+ * Some methods which receive GSL::Vector now can also manipulate
281
+ NArray objects.
282
+ * Special functions
283
+ * Probability distributions
284
+ * Statistics
285
+ * FFTs
286
+ * Wavelet transforms
287
+ * Interpolations
288
+ * Serices accelerations
289
+ * Added method Vector#decimate
290
+ * Sf::exp now can receive Complex or Vector::Complex
291
+
292
+ == Tue Jan 04
293
+ * Version 1.6.0
294
+
295
+ == Thu Dec 30 2004 Yoshiki Tsunesada
296
+ * Update for GSL-1.5.90
297
+ * Added Sf::psi_1
298
+ * Added ODE stepper rk2simp
299
+ * Added LQ, PTLQ decompositions
300
+ * Added methods Cdf::exppow_P, Cdf::exppow_Q
301
+
302
+ == Mon Dec 27 2004 Yoshiki Tsunesada
303
+ * All Ruby/GSL classes are defined as derivatives of the base class
304
+ GSL::Object.
305
+ * Defined the method GSL::Object#info
306
+ * Added Vector#histogram
307
+ * Added Vector.filescan
308
+ * Modified the methods Histogram#increment, accumulate
309
+ * Added methods Poly.fit, Poly.wfit, MultiFit.polyfit
310
+ * Added methods Vector::Complex#abs2, abs, arg
311
+ * Modified FFT methods: now they return FFTed data as a new vector,
312
+ and do not destroy the input vector.
313
+
314
+ == Sat Dec 11 2004 Yoshiki Tsunesada
315
+ * Modified Histogram#integral
316
+
317
+ == Fri Dec 10 2004 Yoshiki Tsunesada
318
+ * Added methods Histogram#reverse, Histogram2d#integrate,
319
+ Histogram2d#normalize
320
+
321
+ == Mon Dec 6 2004 Yoshiki Tsunesada
322
+ * Version 1.5.4
323
+
324
+ == Fri Dec 3 2004 Yoshiki Tsunesada
325
+ * Added Histogram#rebin
326
+
327
+ == Fri Nov 26 2004 Yoshiki Tsunesada
328
+ * Added method Vector#to_m
329
+ * Added methods Matrix#reverse_rows, Matrix#reverse_columns
330
+
331
+ == Tue Nov 16 2004 Yoshiki Tsunesada
332
+ * The method Matrix#** is now obsolete, use "*"
333
+ for matrix multiplication instead.
334
+ * Improved Matrix#* and Vetor#*
335
+ * Added methods Vector#to_m_diagonal, Vector#to_m_circulant,
336
+ Vector#collect
337
+ * Added methods Matrix.hilbert, Matrix.invhilbert, Matrix.pascal,
338
+ Matrix.vandermonde, Matrix.toeplitz, Matrix.circulant
339
+ * Added methods Vector.indgen, Vector#indgen,
340
+ Matrix.indgen, Matrix#indgen (mimics NArray)
341
+ * Added class GSL::Histogram3d
342
+ * Checked GSL lower version compatibilities
343
+ * gsl-1.0 ~ gsl-1.5: OK
344
+ * gsl-0.9.4: OK
345
+ * gsl-0.9.3 or older: not tested
346
+ * gsl-1.6 (development version, CVS Nov2004): OK
347
+
348
+ == Sun Nov 7 2004 Yoshiki Tsunesada
349
+ * Support the gsl_tensor package
350
+ * http://sources.redhat.com/ml/gsl-discuss/2004-q4/msg00053.html
351
+ * Added class GSL::Tensor, GSL::Tensor::Int
352
+ * The methods Vector#get, Vector#[] now receive multiple
353
+ arguments, or an Array, or a Range object.
354
+
355
+ == Thu Nov 4 2004 Yoshiki Tsunesada
356
+ * Added class GSL::Histogram::Integral, which represents the
357
+ cumulative distribution.
358
+ * Added method GSL::Histogram#integrate, which creates a
359
+ GSL::Histogram::Integral object.
360
+ * Added methods GSL::Histogram2d#xproject, yproject, normalize, increment2.
361
+
362
+ == Sun Oct 31 2004 Yoshiki Tsunesada
363
+ * Fix the document for Polynomials
364
+ * Added methods Poly::hermite(n), Poly::cheb(n), and Poly::cheb_II(n) etc..
365
+ * Added method Poly#compan, which returns the companion matrix.
366
+ * The method Matrix#/ is improved: if a Vector is given, this method
367
+ solves the linear system.
368
+
369
+ == Mon Oct 25 2004 Yoshiki Tsunesada
370
+ * Split the source file "randist.c" into "randist.c" and "cdf.c"
371
+ * Split the source file "diff.c" into "diff.c" and "deriv.c"
372
+ * Split the source file "interp.c" into "interp.c" and "spline.c"
373
+ * Added methods Vector#abs, sqrt, square, normalize
374
+ * Added sample scripts odeiv/frei1.rb, fft/frei2.rb
375
+ and eigen/qhoscillator.rb, which deal with quantum mechanical
376
+ calculations. These are translated from the C++ code in the
377
+ Harald Wiedemann's textbook "Numerische Physik"
378
+ (Springer 2004, ISBN 3-540-40774-X).
379
+
380
+ == Sat Oct 23 2004 Yoshiki Tsunesada
381
+ * Added a method GSL::Vector#logspace2. The following two are
382
+ equivalent:
383
+ v1 = Vector.logspace(1, 3, 5)
384
+ v2 = Vector.logspace2(10, 1000, 5)
385
+
386
+ == Tue Oct 19 2004 Yoshiki Tsunesada
387
+ * Support the rngextra package
388
+ * http://www.network-theory.co.uk/download/rngextra/
389
+ * Added two random number generators "rngextra_rng1" and "rngextra_rng2"
390
+ * Fixed a bug in the method Vector#subvector_with_stride
391
+
392
+ == Mon Oct 18 2004 Yoshiki Tsunesada
393
+ * Added a sample script dht.rb
394
+
395
+ == Fri Oct 8 2004 Yoshiki Tsunesada
396
+ * Version 1.5.3
397
+
398
+ == Thu Oct 7 2004 Yoshiki Tsunesada
399
+ * The methods Vector.graph and GSL::graph improved.
400
+ * Added sample scripts of special functions and probability distribution
401
+ functions.
402
+
403
+ == Sat Oct 2 2004 Yoshiki Tsunesada
404
+ * Discrete wavelet transform (experimental)
405
+ * Presently this is only for CVS trackers,
406
+ since DWT is not supported in the latest version GSL-1.5.
407
+ * Added methods Vector.connect, Vector#connect
408
+
409
+ == Thu Sep 30 2004 Yoshiki Tsunesada
410
+ * The methods Vector#[] and Vector#[]= accept an index of
411
+ negative integer. For example, v[-1] returns the last element
412
+ of the vector v, v[-2] does the second last, and so on.
413
+
414
+ == Fri Sep 24 2004 Yoshiki Tsunesada
415
+ * Fixed bug in Sf::legendre_Ql
416
+
417
+ == Wed Sep 1 2004 Yoshiki Tsunesada
418
+ * Version 1.5.2
419
+
420
+ == Fri Aug 27 2004 Yoshiki Tsunesada
421
+ * Experimental implementation of GNU plotutils graph and GNUPLOT interfaces
422
+ * Added unary minus operators for GSL::Vector, GSL::Matrix
423
+
424
+ == Thu Aug 19 2004 Yoshiki Tsunesada
425
+ * Added class GSL::Matrix::Int
426
+ * Correct descriptions of GSL::Matrix#get_row, get_col
427
+ * Changed behaviour of methods NArray#to_gv, NArray#to_gm,
428
+ added methods NArray#to_gv_view, NArray#to_gm_view
429
+
430
+ == Wed Aug 18 2004
431
+ * Added method GSL::set_error_handler
432
+
433
+ == Tue Aug 17 2004
434
+ * Version 1.5.1
435
+
436
+ == Sat Aug 14 2004 Yoshiki Tsunesada
437
+ * Changed behaviour of the methods Odeiv::Evolve#apply, Odeiv::Solver#apply
438
+ * Fixed bug in GSL::Histogram#get
439
+ * Fixed buf in GSL::Vector#matrix_view_with_tda
440
+ * Added class GSL::Vector::Int
441
+ * Added test suite
442
+
443
+ == Wed Aug 11 2004 Yoshiki Tsunesada
444
+ * Fixed bug in GSL::Sf::legendle_Ql_e
445
+ * Fixed bug in GSL::MultiFit.linear
446
+
447
+ == Tue Aug 10 2004 Yoshiki Tsunesada
448
+ * Fixed bugs in GSL::Cdf::gumbel2_P, gumbel2_Q
449
+ * Version 1.5.0
450
+
451
+ == Fri Aug 6 2004 Yoshiki Tsunesada
452
+ * Fixed bug in Histogram2d.new_uniform
453
+
454
+ == 4.Aug.2004
455
+ * Correct source code errors in interp.c, multifit.c
456
+
457
+ == 2.Aug.2004
458
+ * Added methods GSL::Vector#dot (inner product)
459
+ * Added classes GSL::Vector::Col < GSL::Vector,
460
+ GSL::Vector::Col::View < GSL::Vector::Col
461
+
462
+ == 1.Aug.2004
463
+ * Version 0.9.9
464
+
465
+ == 30.Jul.2004
466
+ * Added methods GSL::Rng.default_seed, GSL::Rng.default_seed=(seed)
467
+
468
+ == 26.Jul.2004
469
+ * Cumulative distribution functions
470
+ * Changed module path GSL::Ran:: ---> GSL::Cdf
471
+ * Constants GSL::VERSION, GSL::RUBY_GSL_VERSION defined
472
+
473
+ == 24.Jul.2004
474
+ * Experimental implementation of discrete wavelet transforms (tests/wavelet)
475
+
476
+ == 22.Jul.2004
477
+ * Elementary functions as GSL::sin now can take argument of Integer, Float,
478
+ Array, Vector or Matrix.
479
+ * Strict type check
480
+
481
+ == 20.Jul.2004
482
+ * Added methods GSL::heapsort, Vector#heapsort, Vector::Complex#heapsort
483
+ * Added methods GSL::heapsort_index, Vector#heapsort_index,
484
+ Vector::Complex#heapsort_index
485
+ * version 0.9.4
486
+
487
+ == 18.Jul.2004
488
+ * Added missing functions GSL::Sf::legendre_Ql
489
+ * Added missing functions GSL::Sf::psi_e
490
+ * Added missing functions GSL::Sf::zetam1, zetam1_int
491
+
492
+ == 17.Jul.2004
493
+ * Added GSL::Eigen::Symmv::sort, GSL::Eigen::Hermv::sort
494
+ * Update GSL::Monte
495
+
496
+ == 15.Jul.2004
497
+ * Version 0.9.2
498
+ * Added methods Matrix#each_row, Matrix#each_col
499
+ * Added methods Matrix::Complex#each_row, Matrix::Complex#each_col
500
+ * Fixed bug in Complex::polar
501
+ * Fixed bug in Complex#abs, arg, abs2, logabs
502
+
503
+ == 13.Jul.2004
504
+ * Added Matrix#trace, Matrix::Complex#trace
505
+
506
+ == 11.Jul.2004
507
+ * version 0.9.0
508
+ * Householder Transformations
509
+ * LU decomposition for complex matrices
510
+ * All the GSL functions implemented.
511
+
512
+ == 10.Jul.2004
513
+ * Blas level 3
514
+ * Fixed GSL::Vector::sort_index
515
+
516
+ == 8.Jul.2004
517
+ * Correct document on random distributions
518
+
519
+ == 7.Jul.2004
520
+ * Fixed bug in the method GSL::Sf::coulomb_wave_sphF_array
521
+
522
+ == 6.Jul.2004
523
+ * GSL 1.5 support
524
+ * Fixed a bug in the method GSL::Sf::bessel_sequence_Jnu_e
525
+
526
+ == 5.Jul.2004
527
+ * Compile test with -Wall option:
528
+ * remove unused variables, check missing prototype declarations
529
+ * Fixed a bug in the method GSL::Multimin::test_size (wrong binding)
530
+
531
+ == 30.Jun.2004
532
+ * ver 0.4.7
533
+
534
+ == 28.Jun.2004
535
+ * Switch rb_f_lambda() and rb_block_proc(), for proper ruby version.
536
+
537
+ == 20.Jun.2004
538
+ * Added Linalg::balance_comlumns(A, D) and Matrix#balance_columns(D)
539
+ * BLAS support
540
+ * Level 1
541
+ * Level 2
542
+
543
+ == 19.Jun.2004
544
+ * Support gsl-1.4.90
545
+ * Added Stefan-Boltzmann constant, Thomson scattering cross section
546
+ * Module Deriv
547
+
548
+ == 13.Jun.2004
549
+ * Fixed a bug in the sample script integration/friedmann.rb
550
+ * Improved interfaces of polynomial equations
551
+ * Correct the document on GSL::Complex
552
+
553
+ == 10.Jun.2004
554
+ * ver 0.4.2
555
+ * The module GSL::Math removed
556
+ * The module name GSL::Const is changed to GSL::CONST
557
+
558
+ == 09.Jun.2004
559
+ * ver 0.4.1
560
+ * Add random number generators borosh13, coveyou, fishman18,
561
+ fishman20, fishman2x, knuthran, knuthran2, lecuyer21, waterman14.
562
+ * Correct the documentation on random number generators
563
+ * Add functions expint_E1_scaled,expint_E2_scaled, and others
564
+ * Add methods Rng::fwrite, fread
565
+ * Add function binomial_tpe
566
+
567
+ == 05.Jun.2004
568
+ * 0.4.0
569
+
570
+ == 02.Jun.2004
571
+ * rb_gc_mark
572
+ * Implemented simulated annealing, Ntuples
573
+
574
+ == 25.Apr.2004
575
+ * Vector, Matrix, Matrix::Complex coerce
576
+
577
+ == 24.Apr.2004 version 0.3.11
578
+ * GSL::Complex, coerce
579
+
580
+ == 22.Apr.2004 version 0.3.10
581
+ * polish sources of special functions
582
+
583
+ == 18.Apr.2004, version 0.3.9
584
+ * bug fix Eigensystems, Interpolation
585
+
586
+ == 16.Apr.2004
587
+ * bug fix Vector, Matrix, Linalg
588
+
589
+ == 14.Apr.2004, version 0.3.8
590
+ * N-tuples
591
+ * Improvement in NArray object conversions (thanks to S. Nishizawa)
592
+
593
+ == 13.Apr.2004
594
+ * Poly divided-difference reporesentation, Taylor expansion
595
+ * Apply patch by S. Nishizawa, for type checks in C code,
596
+ and some modifications in sample scripts
597
+
598
+ == 12.Apr.2004, version 0.3.7
599
+ * Add mathematical functions ldexp, frexp
600
+ * Add gsl_sf_hazard function
601
+ * QRng bug fix
602
+ * GSL::Stats module
603
+
604
+ == version 0.3.6
605
+ * Monte-Carlo integration
606
+
607
+ == version 0.3.5
608
+ * Multidimensional minimization
609
+
610
+ == version 0.3.4
611
+ * Combinations, One dimensional minimization, Multidimensional root-finding
612
+
613
+ == version 0.3.3
614
+ * Nonlinear least-squared fitting
615
+
616
+ == versoin 0.3.2
617
+ * Least-squared fitting
618
+
619
+ == version 0.3.1
620
+ * One dimensional root-finding
621
+
622
+ == version 0.3.0
623
+ * FFTs, Ordinary differential equations
624
+
625
+ == 2002 version 0.2.5