rb-gsl 1.16.0.4 → 1.16.0.5

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