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.
- checksums.yaml +4 -4
- data/.gitignore +12 -0
- data/.travis.yml +24 -0
- data/AUTHORS +6 -0
- data/COPYING +341 -339
- data/ChangeLog +608 -587
- data/Gemfile +4 -0
- data/README.md +77 -0
- data/Rakefile +14 -33
- data/THANKS +1 -1
- data/examples/blas/blas.rb +1 -1
- data/examples/bspline.rb +3 -3
- data/examples/complex/functions.rb +4 -4
- data/examples/complex/mul.rb +1 -1
- data/examples/const/physconst.rb +4 -4
- data/examples/const/travel.rb +4 -4
- data/examples/eigen/nonsymmv.rb +1 -1
- data/examples/eigen/qhoscillator.rb +3 -3
- data/examples/fft/radix2.rb +1 -1
- data/examples/fft/real-halfcomplex.rb +3 -3
- data/examples/fft/real-halfcomplex2.rb +3 -3
- data/examples/fit/expfit.rb +1 -1
- data/examples/fit/multifit.rb +1 -1
- data/examples/fit/ndlinear.rb +44 -44
- data/examples/fit/nonlinearfit.rb +1 -1
- data/examples/fit/wlinear.rb +3 -3
- data/examples/function/function.rb +1 -1
- data/examples/function/min.rb +1 -1
- data/examples/function/synchrotron.rb +2 -2
- data/examples/gallery/koch.rb +1 -1
- data/examples/histogram/cauchy.rb +2 -2
- data/examples/histogram/exponential.rb +1 -1
- data/examples/histogram/histo3d.rb +1 -1
- data/examples/histogram/histogram-pdf.rb +2 -2
- data/examples/histogram/xexp.rb +1 -1
- data/examples/integration/ahmed.rb +2 -2
- data/examples/integration/cosmology.rb +7 -7
- data/examples/integration/friedmann.rb +4 -4
- data/examples/integration/qng.rb +1 -1
- data/examples/interp/demo.rb +2 -2
- data/examples/linalg/LQ_solve.rb +1 -1
- data/examples/linalg/LU.rb +1 -1
- data/examples/linalg/LU2.rb +1 -1
- data/examples/linalg/LU_narray.rb +1 -1
- data/examples/linalg/PTLQ.rb +1 -1
- data/examples/linalg/QRPT.rb +1 -1
- data/examples/linalg/chol.rb +1 -1
- data/examples/linalg/chol_narray.rb +1 -1
- data/examples/linalg/complex.rb +1 -1
- data/examples/math/elementary.rb +1 -1
- data/examples/math/functions.rb +1 -1
- data/examples/math/inf_nan.rb +1 -1
- data/examples/math/minmax.rb +1 -1
- data/examples/math/power.rb +1 -1
- data/examples/math/test.rb +1 -1
- data/examples/min.rb +1 -1
- data/examples/multimin/bundle.rb +1 -1
- data/examples/multimin/cqp.rb +17 -17
- data/examples/multiroot/fsolver3.rb +1 -1
- data/examples/odeiv/binarysystem.rb +12 -12
- data/examples/odeiv/demo.rb +3 -3
- data/examples/odeiv/frei1.rb +7 -7
- data/examples/odeiv/frei2.rb +4 -4
- data/examples/odeiv/oscillator.rb +1 -1
- data/examples/odeiv/sedov.rb +3 -3
- data/examples/odeiv/whitedwarf.rb +11 -11
- data/examples/permutation/ex1.rb +2 -2
- data/examples/permutation/permutation.rb +1 -1
- data/examples/poly/demo.rb +1 -1
- data/examples/random/diffusion.rb +1 -1
- data/examples/random/generator.rb +2 -2
- data/examples/random/randomwalk.rb +3 -3
- data/examples/random/rng.rb +1 -1
- data/examples/roots/bisection.rb +1 -1
- data/examples/roots/brent.rb +1 -1
- data/examples/roots/demo.rb +1 -1
- data/examples/roots/newton.rb +2 -2
- data/examples/roots/recombination.gp +0 -1
- data/examples/sf/hyperg.rb +1 -1
- data/examples/sf/sphbessel.rb +1 -1
- data/examples/sort/sort.rb +1 -1
- data/examples/tamu_anova.rb +4 -4
- data/examples/vector/add.rb +1 -1
- data/examples/vector/decimate.rb +1 -1
- data/examples/vector/gnuplot.rb +8 -8
- data/examples/vector/vector.rb +2 -2
- data/examples/wavelet/wavelet1.rb +1 -1
- data/ext/{gsl → gsl_native}/alf.c +9 -9
- data/ext/{gsl → gsl_native}/array.c +64 -151
- data/ext/{gsl → gsl_native}/array_complex.c +61 -63
- data/ext/{gsl → gsl_native}/blas.c +0 -0
- data/ext/{gsl → gsl_native}/blas1.c +32 -32
- data/ext/{gsl → gsl_native}/blas2.c +54 -58
- data/ext/{gsl → gsl_native}/blas3.c +54 -54
- data/ext/{gsl → gsl_native}/block.c +3 -6
- data/ext/{gsl/block_source.c → gsl_native/block_source.h} +109 -111
- data/ext/gsl_native/bspline.c +122 -0
- data/ext/{gsl → gsl_native}/bundle.c +0 -0
- data/ext/{gsl → gsl_native}/cdf.c +76 -88
- data/ext/{gsl → gsl_native}/cheb.c +74 -85
- data/ext/{gsl → gsl_native}/combination.c +9 -16
- data/ext/{gsl → gsl_native}/common.c +7 -37
- data/ext/{gsl → gsl_native}/complex.c +113 -115
- data/ext/gsl_native/const.c +331 -0
- data/ext/{gsl → gsl_native}/const_additional.c +12 -33
- data/ext/gsl_native/cqp.c +283 -0
- data/ext/{gsl → gsl_native}/deriv.c +22 -30
- data/ext/{gsl → gsl_native}/dht.c +20 -28
- data/ext/{gsl → gsl_native}/diff.c +23 -25
- data/ext/{gsl → gsl_native}/dirac.c +44 -45
- data/ext/{gsl → gsl_native}/eigen.c +1031 -1082
- data/ext/{gsl → gsl_native}/error.c +13 -13
- data/ext/{gsl → gsl_native}/extconf.rb +5 -13
- data/ext/{gsl → gsl_native}/fft.c +192 -198
- data/ext/{gsl → gsl_native}/fit.c +16 -16
- data/ext/gsl_native/fresnel.c +312 -0
- data/ext/{gsl → gsl_native}/function.c +29 -35
- data/ext/{gsl → gsl_native}/geometry.c +15 -15
- data/ext/{gsl → gsl_native}/graph.c +37 -87
- data/ext/{gsl → gsl_native}/gsl.c +10 -23
- data/ext/{gsl → gsl_native}/gsl_narray.c +15 -24
- data/ext/{gsl → gsl_native}/histogram.c +123 -150
- data/ext/{gsl → gsl_native}/histogram2d.c +71 -96
- data/ext/{gsl → gsl_native}/histogram3d.c +72 -72
- data/ext/{gsl → gsl_native}/histogram3d_source.c +195 -196
- data/ext/{gsl → gsl_native}/histogram_find.c +31 -33
- data/ext/{gsl → gsl_native}/histogram_oper.c +43 -52
- data/ext/{gsl → gsl_native}/ieee.c +7 -15
- data/ext/{gsl → gsl_native}/include/rb_gsl.h +0 -7
- data/ext/{gsl → gsl_native}/include/rb_gsl_array.h +15 -25
- data/ext/{gsl → gsl_native}/include/rb_gsl_cheb.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_common.h +44 -52
- data/ext/{gsl → gsl_native}/include/rb_gsl_complex.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_const.h +0 -5
- data/ext/{gsl → gsl_native}/include/rb_gsl_dirac.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_eigen.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_fft.h +0 -3
- data/ext/{gsl → gsl_native}/include/rb_gsl_fit.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_function.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_graph.h +2 -2
- data/ext/{gsl → gsl_native}/include/rb_gsl_histogram.h +8 -8
- data/ext/{gsl → gsl_native}/include/rb_gsl_histogram3d.h +50 -50
- data/ext/{gsl → gsl_native}/include/rb_gsl_integration.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_interp.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_linalg.h +0 -1
- data/ext/{gsl → gsl_native}/include/rb_gsl_math.h +0 -4
- data/ext/{gsl → gsl_native}/include/rb_gsl_odeiv.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_poly.h +3 -3
- data/ext/{gsl → gsl_native}/include/rb_gsl_rational.h +1 -1
- data/ext/{gsl → gsl_native}/include/rb_gsl_rng.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_root.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_sf.h +39 -43
- data/ext/{gsl → gsl_native}/include/rb_gsl_statistics.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_tensor.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_with_narray.h +0 -0
- data/ext/{gsl → gsl_native}/include/templates_off.h +0 -0
- data/ext/{gsl → gsl_native}/include/templates_on.h +1 -1
- data/ext/{gsl → gsl_native}/integration.c +160 -183
- data/ext/{gsl → gsl_native}/interp.c +23 -31
- data/ext/gsl_native/jacobi.c +733 -0
- data/ext/{gsl → gsl_native}/linalg.c +448 -576
- data/ext/{gsl → gsl_native}/linalg_complex.c +84 -98
- data/ext/{gsl → gsl_native}/math.c +45 -63
- data/ext/{gsl → gsl_native}/matrix.c +4 -6
- data/ext/{gsl → gsl_native}/matrix_complex.c +111 -114
- data/ext/{gsl → gsl_native}/matrix_double.c +74 -77
- data/ext/{gsl → gsl_native}/matrix_int.c +49 -50
- data/ext/{gsl/matrix_source.c → gsl_native/matrix_source.h} +280 -302
- data/ext/{gsl → gsl_native}/min.c +43 -74
- data/ext/{gsl → gsl_native}/monte.c +45 -59
- data/ext/{gsl → gsl_native}/multifit.c +138 -147
- data/ext/{gsl → gsl_native}/multimin.c +55 -83
- data/ext/{gsl → gsl_native}/multimin_fsdf.c +15 -15
- data/ext/{gsl → gsl_native}/multiroots.c +61 -64
- data/ext/{gsl → gsl_native}/multiset.c +3 -7
- data/ext/{gsl → gsl_native}/ndlinear.c +320 -321
- data/ext/{gsl → gsl_native}/nmf.c +11 -11
- data/ext/{gsl → gsl_native}/nmf_wrap.c +1 -1
- data/ext/{gsl → gsl_native}/ntuple.c +13 -13
- data/ext/{gsl → gsl_native}/odeiv.c +95 -106
- data/ext/gsl_native/ool.c +879 -0
- data/ext/{gsl → gsl_native}/permutation.c +36 -34
- data/ext/{gsl → gsl_native}/poly.c +2 -5
- data/ext/{gsl → gsl_native}/poly2.c +6 -6
- data/ext/{gsl/poly_source.c → gsl_native/poly_source.h} +232 -275
- data/ext/{gsl → gsl_native}/qrng.c +6 -17
- data/ext/{gsl → gsl_native}/randist.c +218 -243
- data/ext/{gsl → gsl_native}/rational.c +9 -9
- data/ext/{gsl → gsl_native}/rng.c +29 -45
- data/ext/{gsl → gsl_native}/root.c +43 -43
- data/ext/{gsl → gsl_native}/sf.c +163 -197
- data/ext/{gsl → gsl_native}/sf_airy.c +0 -0
- data/ext/{gsl → gsl_native}/sf_bessel.c +6 -6
- data/ext/{gsl → gsl_native}/sf_clausen.c +0 -0
- data/ext/{gsl → gsl_native}/sf_coulomb.c +39 -39
- data/ext/{gsl → gsl_native}/sf_coupling.c +29 -29
- data/ext/{gsl → gsl_native}/sf_dawson.c +0 -0
- data/ext/{gsl → gsl_native}/sf_debye.c +0 -9
- data/ext/{gsl → gsl_native}/sf_dilog.c +0 -0
- data/ext/{gsl → gsl_native}/sf_elementary.c +2 -2
- data/ext/{gsl → gsl_native}/sf_ellint.c +42 -42
- data/ext/{gsl → gsl_native}/sf_elljac.c +2 -2
- data/ext/{gsl → gsl_native}/sf_erfc.c +0 -4
- data/ext/{gsl → gsl_native}/sf_exp.c +2 -2
- data/ext/{gsl → gsl_native}/sf_expint.c +1 -11
- data/ext/{gsl → gsl_native}/sf_fermi_dirac.c +0 -0
- data/ext/{gsl → gsl_native}/sf_gamma.c +1 -5
- data/ext/{gsl → gsl_native}/sf_gegenbauer.c +0 -0
- data/ext/{gsl → gsl_native}/sf_hyperg.c +0 -0
- data/ext/{gsl → gsl_native}/sf_laguerre.c +3 -3
- data/ext/{gsl → gsl_native}/sf_lambert.c +0 -0
- data/ext/{gsl → gsl_native}/sf_legendre.c +0 -0
- data/ext/{gsl → gsl_native}/sf_log.c +3 -3
- data/ext/gsl_native/sf_mathieu.c +235 -0
- data/ext/{gsl → gsl_native}/sf_power.c +0 -0
- data/ext/{gsl → gsl_native}/sf_psi.c +2 -11
- data/ext/{gsl → gsl_native}/sf_synchrotron.c +0 -0
- data/ext/{gsl → gsl_native}/sf_transport.c +0 -0
- data/ext/{gsl → gsl_native}/sf_trigonometric.c +3 -3
- data/ext/{gsl → gsl_native}/sf_zeta.c +0 -4
- data/ext/{gsl → gsl_native}/signal.c +60 -64
- data/ext/{gsl → gsl_native}/siman.c +36 -40
- data/ext/{gsl → gsl_native}/sort.c +3 -4
- data/ext/{gsl → gsl_native}/spline.c +25 -43
- data/ext/{gsl → gsl_native}/stats.c +102 -115
- data/ext/{gsl → gsl_native}/sum.c +32 -32
- data/ext/{gsl → gsl_native}/tamu_anova.c +0 -0
- data/ext/{gsl → gsl_native}/tensor.c +2 -4
- data/ext/{gsl/tensor_source.c → gsl_native/tensor_source.h} +144 -144
- data/ext/{gsl → gsl_native}/vector.c +2 -4
- data/ext/{gsl → gsl_native}/vector_complex.c +165 -171
- data/ext/{gsl → gsl_native}/vector_double.c +167 -174
- data/ext/{gsl → gsl_native}/vector_int.c +23 -25
- data/ext/{gsl/vector_source.c → gsl_native/vector_source.h} +400 -414
- data/ext/{gsl → gsl_native}/wavelet.c +215 -236
- data/lib/gsl.rb +1 -7
- data/lib/gsl/gnuplot.rb +2 -2
- data/lib/gsl/version.rb +1 -3
- data/rb-gsl.gemspec +29 -0
- data/rdoc/blas.rdoc +3 -3
- data/rdoc/bspline.rdoc +7 -7
- data/rdoc/cheb.rdoc +8 -8
- data/rdoc/cholesky_complex.rdoc +1 -1
- data/rdoc/combi.rdoc +9 -9
- data/rdoc/complex.rdoc +11 -11
- data/rdoc/const.rdoc +20 -20
- data/rdoc/dht.rdoc +6 -6
- data/rdoc/diff.rdoc +6 -6
- data/rdoc/ehandling.rdoc +3 -3
- data/rdoc/eigen.rdoc +11 -11
- data/rdoc/fft.rdoc +26 -26
- data/rdoc/fit.rdoc +18 -18
- data/rdoc/graph.rdoc +2 -2
- data/rdoc/hist.rdoc +16 -16
- data/rdoc/hist2d.rdoc +4 -4
- data/rdoc/hist3d.rdoc +3 -3
- data/rdoc/integration.rdoc +16 -16
- data/rdoc/interp.rdoc +11 -11
- data/rdoc/intro.rdoc +3 -3
- data/rdoc/linalg.rdoc +20 -20
- data/rdoc/linalg_complex.rdoc +1 -1
- data/rdoc/math.rdoc +13 -13
- data/rdoc/matrix.rdoc +22 -22
- data/rdoc/min.rdoc +9 -9
- data/rdoc/monte.rdoc +3 -3
- data/rdoc/multimin.rdoc +12 -12
- data/rdoc/multiroot.rdoc +12 -12
- data/rdoc/narray.rdoc +9 -9
- data/rdoc/ndlinear.rdoc +4 -4
- data/rdoc/nonlinearfit.rdoc +17 -17
- data/rdoc/ntuple.rdoc +5 -5
- data/rdoc/odeiv.rdoc +12 -12
- data/rdoc/perm.rdoc +11 -11
- data/rdoc/poly.rdoc +17 -17
- data/rdoc/qrng.rdoc +9 -9
- data/rdoc/randist.rdoc +10 -10
- data/rdoc/ref.rdoc +49 -49
- data/rdoc/rng.rdoc +9 -9
- data/rdoc/roots.rdoc +12 -12
- data/rdoc/sf.rdoc +35 -35
- data/rdoc/siman.rdoc +3 -3
- data/rdoc/sort.rdoc +6 -6
- data/rdoc/start.rdoc +2 -2
- data/rdoc/stats.rdoc +13 -13
- data/rdoc/sum.rdoc +4 -4
- data/rdoc/tensor.rdoc +3 -3
- data/rdoc/tut.rdoc +1 -1
- data/rdoc/use.rdoc +3 -3
- data/rdoc/vector.rdoc +28 -28
- data/rdoc/vector_complex.rdoc +6 -6
- data/rdoc/wavelet.rdoc +8 -8
- data/test/gsl/blas_test.rb +1 -1
- data/test/gsl/index_test.rb +61 -0
- data/test/gsl/matrix_test.rb +21 -0
- data/uncrustify.cfg +1693 -0
- metadata +212 -243
- data/README +0 -28
- data/ext/gsl/bspline.c +0 -130
- data/ext/gsl/const.c +0 -672
- data/ext/gsl/cqp.c +0 -283
- data/ext/gsl/fcmp.c +0 -64
- data/ext/gsl/fresnel.c +0 -312
- data/ext/gsl/jacobi.c +0 -739
- data/ext/gsl/ool.c +0 -879
- data/ext/gsl/oper_complex_source.c +0 -251
- data/ext/gsl/sf_mathieu.c +0 -238
- data/rdoc/index.rdoc +0 -50
data/ChangeLog
CHANGED
@@ -1,117 +1,125 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
*
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
*
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
*
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
*
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
*
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
*
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
*
|
76
|
-
*
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
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
|
-
|
130
|
-
|
131
|
-
Sun Aug 5 2007
|
132
|
-
|
133
|
-
Tue May 15 2007
|
134
|
-
|
135
|
-
|
136
|
-
Sun Feb 18 2007
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
Sun Dec 31 2006
|
145
|
-
|
146
|
-
|
147
|
-
Sun Dec 24 2006
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
Wed Dec 13 2006
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
Mon Dec 11 2006
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
Tue Sep 26 2006
|
160
|
-
|
161
|
-
|
162
|
-
Sun Sep 24 2006
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
Thu Sep 21 2006
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
Wed Aug 23 2006
|
171
|
-
|
172
|
-
|
173
|
-
Fri Aug 18 2006
|
174
|
-
|
175
|
-
|
176
|
-
Sat Apr 29 2006
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
Thu Apr 13 2006
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
Fri Dec 2 2005
|
196
|
-
|
197
|
-
|
198
|
-
Sun Nov 27 2005
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
Tue Apr 3 JST 2005
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
Wed Apr 27 2005
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
Mon Apr 18 2005
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
Thu Apr 7 2005
|
234
|
-
|
235
|
-
|
236
|
-
Mon Mar 21 2005
|
237
|
-
|
238
|
-
|
239
|
-
Sat Mar 19 2005
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
Tue Mar 15 2005
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
Sat Mar 12 2005
|
250
|
-
|
251
|
-
|
252
|
-
Sat Feb 26 2005
|
253
|
-
|
254
|
-
|
255
|
-
Sat Feb 5 2005
|
256
|
-
|
257
|
-
|
258
|
-
Wed Jan 26 2005
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
Thu Jan 20 2005
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
Thu Jan 06 2005
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
Tue Jan 04
|
281
|
-
|
282
|
-
|
283
|
-
Thu Dec 30 2004 Yoshiki Tsunesada
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
Mon Dec 27 2004 Yoshiki Tsunesada
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
Sat Dec 11 2004 Yoshiki Tsunesada
|
303
|
-
|
304
|
-
|
305
|
-
Fri Dec 10 2004 Yoshiki Tsunesada
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
Mon Dec 6 2004 Yoshiki Tsunesada
|
310
|
-
|
311
|
-
|
312
|
-
Fri Dec 3 2004 Yoshiki Tsunesada
|
313
|
-
|
314
|
-
|
315
|
-
Fri Nov 26 2004 Yoshiki Tsunesada
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
Tue Nov 16 2004 Yoshiki Tsunesada
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
Sun Nov 7 2004 Yoshiki Tsunesada
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
Thu Nov 4 2004 Yoshiki Tsunesada
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
Sun Oct 31 2004 Yoshiki Tsunesada
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
Mon Oct 25 2004 Yoshiki Tsunesada
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
Sat Oct 23 2004 Yoshiki Tsunesada
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
Tue Oct 19 2004 Yoshiki Tsunesada
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
Mon Oct 18 2004 Yoshiki Tsunesada
|
381
|
-
|
382
|
-
|
383
|
-
Fri Oct 8 2004 Yoshiki Tsunesada
|
384
|
-
|
385
|
-
|
386
|
-
Thu Oct 7 2004 Yoshiki Tsunesada
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
Sat Oct 2 2004 Yoshiki Tsunesada
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
Thu Sep 30 2004 Yoshiki Tsunesada
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
Fri Sep 24 2004 Yoshiki Tsunesada
|
403
|
-
|
404
|
-
|
405
|
-
Wed Sep 1 2004 Yoshiki Tsunesada
|
406
|
-
|
407
|
-
|
408
|
-
Fri Aug 27 2004 Yoshiki Tsunesada
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
Thu Aug 19 2004 Yoshiki Tsunesada
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
Wed Aug 18 2004
|
419
|
-
|
420
|
-
|
421
|
-
Tue Aug 17 2004
|
422
|
-
|
423
|
-
|
424
|
-
Sat Aug 14 2004 Yoshiki Tsunesada
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
Wed Aug 11 2004 Yoshiki Tsunesada
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
Tue Aug 10 2004 Yoshiki Tsunesada
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
Fri Aug 6 2004 Yoshiki Tsunesada
|
440
|
-
|
441
|
-
|
442
|
-
4.Aug.2004
|
443
|
-
|
444
|
-
|
445
|
-
2.Aug.2004
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
1.Aug.2004
|
451
|
-
|
452
|
-
|
453
|
-
30.Jul.2004
|
454
|
-
|
455
|
-
|
456
|
-
26.Jul.2004
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
24.Jul.2004
|
462
|
-
|
463
|
-
|
464
|
-
22.Jul.2004
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
20.Jul.2004
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
18.Jul.2004
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
17.Jul.2004
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
15.Jul.2004
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
13.Jul.2004
|
492
|
-
|
493
|
-
|
494
|
-
11.Jul.2004
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
10.Jul.2004
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
8.Jul.2004
|
505
|
-
|
506
|
-
|
507
|
-
7.Jul.2004
|
508
|
-
|
509
|
-
|
510
|
-
6.Jul.2004
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
5.Jul.2004
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
30.Jun.2004
|
520
|
-
|
521
|
-
|
522
|
-
28.Jun.2004
|
523
|
-
|
524
|
-
|
525
|
-
20.Jun.2004
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
19.Jun.2004
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
13.Jun.2004
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
10.Jun.2004
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
09.Jun.2004
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
05.Jun.2004
|
556
|
-
|
557
|
-
|
558
|
-
02.Jun.2004
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
25.Apr.2004
|
563
|
-
|
564
|
-
|
565
|
-
24.Apr.2004 version 0.3.11
|
566
|
-
|
567
|
-
|
568
|
-
22.Apr.2004 version 0.3.10
|
569
|
-
|
570
|
-
|
571
|
-
18.Apr.2004, version 0.3.9
|
572
|
-
|
573
|
-
|
574
|
-
16.Apr.2004
|
575
|
-
|
576
|
-
|
577
|
-
14.Apr.2004, version 0.3.8
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
13.Apr.2004
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
12.Apr.2004, version 0.3.7
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
version 0.3.6
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
version 0.3.
|
599
|
-
|
600
|
-
|
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
|