gsl 1.14.7 → 1.15.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. data/ChangeLog +139 -134
  2. data/Rakefile +4 -3
  3. data/VERSION +1 -1
  4. data/ext/array.c +0 -24
  5. data/ext/array_complex.c +11 -10
  6. data/ext/blas1.c +9 -6
  7. data/ext/block_source.c +4 -3
  8. data/ext/dirac.c +0 -6
  9. data/ext/error.c +1 -2
  10. data/ext/extconf.rb +9 -4
  11. data/ext/fft.c +22 -12
  12. data/ext/function.c +2 -2
  13. data/ext/graph.c +2 -0
  14. data/ext/gsl_narray.c +1 -7
  15. data/ext/histogram.c +0 -8
  16. data/ext/ieee.c +3 -1
  17. data/ext/integration.c +5 -3
  18. data/ext/linalg.c +11 -16
  19. data/ext/linalg_complex.c +1 -3
  20. data/ext/matrix_complex.c +10 -5
  21. data/ext/matrix_int.c +10 -10
  22. data/ext/matrix_source.c +3 -2
  23. data/ext/multifit.c +21 -29
  24. data/ext/multimin.c +1 -3
  25. data/ext/odeiv.c +9 -6
  26. data/ext/poly_source.c +82 -52
  27. data/ext/sf_bessel.c +8 -4
  28. data/ext/sf_coulomb.c +8 -8
  29. data/ext/sf_coupling.c +9 -6
  30. data/ext/sf_dilog.c +3 -2
  31. data/ext/sf_elementary.c +6 -4
  32. data/ext/sf_elljac.c +3 -2
  33. data/ext/sf_exp.c +15 -10
  34. data/ext/sf_gamma.c +9 -6
  35. data/ext/sf_gegenbauer.c +3 -2
  36. data/ext/sf_hyperg.c +18 -12
  37. data/ext/sf_laguerre.c +3 -2
  38. data/ext/sf_legendre.c +3 -2
  39. data/ext/sf_log.c +3 -2
  40. data/ext/sf_power.c +3 -2
  41. data/ext/sf_trigonometric.c +9 -6
  42. data/ext/signal.c +1 -3
  43. data/ext/siman.c +1 -2
  44. data/ext/stats.c +1 -0
  45. data/ext/vector_complex.c +5 -2
  46. data/ext/vector_double.c +13 -8
  47. data/ext/vector_source.c +6 -5
  48. data/ext/wavelet.c +16 -8
  49. data/include/rb_gsl_common.h +5 -6
  50. data/include/rb_gsl_config.h +62 -0
  51. data/include/rb_gsl_with_narray.h +6 -1
  52. data/lib/gsl.rb +3 -0
  53. data/lib/rbgsl.rb +3 -0
  54. data/rdoc/fit.rdoc +5 -5
  55. data/rdoc/ndlinear.rdoc +5 -2
  56. data/tests/gsl_test2.rb +3 -0
  57. data/tests/matrix/matrix_complex_test.rb +36 -0
  58. data/tests/narray/blas_dnrm2.rb +20 -0
  59. data/tests/poly/poly.rb +48 -0
  60. data/tests/sf/test_mode.rb +19 -0
  61. data/tests/stats_mt.rb +16 -0
  62. metadata +15 -11
  63. data/ext/MANIFEST +0 -119
data/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ Sat Feb 26 08:18:45 PST 2011
2
+ * Ruby/GSL 1.14.7
3
+ * Fix conversion of non-DFLOAT NArray to GSL::Vector and
4
+ GSL::Vector::Complex.
5
+
1
6
  Thu Feb 24 10:27:08 PST 2011
2
7
  * Ruby/GSL 1.14.6
3
8
  * Add Vector::Complex support to NArray conversions
@@ -13,7 +18,7 @@ Sun Nov 14 17:01:07 PST 2010
13
18
  Wed Sep 29 00:37:44 BOT 2010
14
19
  * Modification for ruby-1.9.2
15
20
  * Replaced STR2CSTR to StringValuePtr
16
-
21
+
17
22
  Mon Mar 22 23:54:07 MDT 2010
18
23
  * GSL-1.14 support
19
24
  * Added GSL::Multiset class
@@ -21,7 +26,7 @@ Mon Mar 22 23:54:07 MDT 2010
21
26
 
22
27
  Sun Aug 16 19:01:31 BOT 2009
23
28
  * Added Non-negative Matrix Factorization (NMF) support (by Roman Shterenzon)
24
-
29
+
25
30
  Sat Aug 8 22:36:24 BOT 2009
26
31
  * Added GSL-1.13 features:
27
32
  * Added GSL::Monte::Miser#params_get, GSL::Monte::Vegas#params_get
@@ -29,31 +34,31 @@ Sat Aug 8 22:36:24 BOT 2009
29
34
  * Added GSL::Poly#eval_derivs(x)
30
35
  * Added a new minimization algorithm "quad_golden"
31
36
  * Added a new multimin algorithm "nmsimplex2rand"
32
-
37
+
33
38
  Tue Jun 9 10:42:30 JST 2009
34
39
  * Fixed bug in linalg.c (bug [#25842])
35
-
40
+
36
41
  Thu Feb 2 12:16:38 JST 2009
37
42
  * Fixed a bug in GSL::Histogram.alloc_uniform() (bug [#23040])
38
43
  * Fixed a bug in GSL::Vector#/ (bug [#23334])
39
-
44
+
40
45
  Thu Nov 6 17:34:18 JST 2008
41
46
  * Match with the tensor extension version 0.99
42
47
  * now not compatible for the versions older than tensor-0.97.
43
-
48
+
44
49
  Sat Jul 26 08:23:45 JST 2008
45
50
  * GSL::Poly.eval now handles complex numbers (GSL-1.11)
46
51
  * Added new quasi-random generators "halton" and "reversehalton"
47
52
  * Added a module function GSL::MultiFit::linear_residuals() (GSL-1.11)
48
53
  * Fixed a bug in ODE solver
49
-
54
+
50
55
  Mon Jun 30 22:07:24 JST 2008
51
56
  * Fixed GSL::Vector#normalize (#20865)
52
-
57
+
53
58
  Mon May 26 19:21:15 JST 2008
54
59
  * Fixed a bug in GSL::Matrix::to_v (#19757)
55
60
  * Fixed a bug in GSL::Vector::Int multiplication (#19924)
56
-
61
+
57
62
  Sat Dec 8 23:44:47 2007
58
63
  * Version 1.10.3
59
64
 
@@ -102,7 +107,7 @@ Sun Feb 18 00:08:15 2007
102
107
  * Added Vector#ispos, isneg
103
108
  * Added knuthran2002 generator
104
109
  * Added a new minimization method GSL::MultiMin::FdfMinimizer::BFGS2
105
-
110
+
106
111
  Sun Dec 31 01:34:29 2006
107
112
  * Remove the module function GSL::equal?, which breaks the Ruby policy.
108
113
 
@@ -120,135 +125,135 @@ Mon Dec 11 01:04:19 2006
120
125
 
121
126
  Tue Sep 26 18:58:26 BOT 2006
122
127
  * Fixed a bug in GSL::Vector#*
123
-
128
+
124
129
  Sun Sep 24 10:37:49 BOT 2006
125
130
  * Fixed a bug in GSL::Matrix.vandermonde()
126
131
  * Added methods GSL::Vector#join, zip, cumsum, cumprod
127
-
132
+
128
133
  Thu Sep 21 20:03:39 BOT 2006
129
134
  * Added methods to calculate eigenvectors of nonsymmetric matrices
130
135
  * Added test scripts tests/eigen/unsymm.rb, tests/eigen/unsymmv.rb
131
-
136
+
132
137
  Wed Aug 23 00:51:12 BOT 2006
133
138
  * Added methods to calculate eigenvalues of nonsymmetric matrices
134
-
139
+
135
140
  Fri Aug 18 20:47:05 BOT 2006
136
141
  * Fixed bug in Sf::hypot
137
-
142
+
138
143
  Sat Apr 29 12:29:10 JST 2006
139
144
  * Applied patch provided by Cameron McBride, to fix a bug in
140
- randist.c
145
+ randist.c
141
146
  * Applied patched by zunda to fix some test/ scripts.
142
-
147
+
143
148
  Thu Apr 13 22:21:02 JST 2006
144
149
  * Version 1.8.0
145
150
  * Added cumulative distribution functions under the module GSL::Cdf:
146
- binomial, poisson, geometric, negative binomial, pascal and hypergeometric.
151
+ binomial, poisson, geometric, negative binomial, pascal and hypergeometric.
147
152
  * Added module functions GSL::Cdf::beta_Pinv, beta_Qinv, fdist_Pinv, and
148
- fdist_Qinv.
153
+ fdist_Qinv.
149
154
  * Added the multilinear fit estimator function GSL::MultiFit::linear_est.
150
155
  * Added new random variate generators,
151
- GSL::Ran::gaussian_ziggurat and gamma_mt.
156
+ GSL::Ran::gaussian_ziggurat and gamma_mt.
152
157
  * Added Debye functions for n=5 and n=6, as
153
- GSL::Sf::debye_5 and debye_6.
158
+ GSL::Sf::debye_5 and debye_6.
154
159
  * Added GSL::Spline#min_size
155
160
  * Added the Debye unit to physical constants.
156
-
161
+
157
162
  Fri Dec 2 19:05:30 JST 2005
158
163
  * Singleton method "new" ---> "alloc"
159
-
164
+
160
165
  Sun Nov 27 14:01:12 JST 2005
161
166
  * Apply patch by zunda to improve multifit.
162
167
  * Fix bug in dirac.c
163
-
168
+
164
169
  Tue Apr 3 JST 2005
165
170
  * Added Vector#collect!, Matrix#collect!
166
171
  * Added lib/rbgsl.rb, in which the GSL module is not included by default
167
-
172
+
168
173
  Wed Apr 27 21:21:58 JST 2005
169
174
  * The following Linalg methods now can handle NArray objects:
170
- * GSL::Linalg::
171
- * LU.decomp(m)
172
- * LU.solve(lu, b)
173
- * LU.svx(lu, bx)
174
- * LU.det(lu, sign)
175
- * LU.lndet(lu)
176
- * LU.invert(lu, perm)
177
- * QR.decomp(m)
178
- * QR.solve(qr, tau, b)
179
- * QR.svx(qr, tau, bx)
180
- * SV.decomp(m)
181
- * SV.solve(u, v, s, b)
182
- * SV.svx(u, v, s, bx)
183
- * Cholesky.decomp(m)
184
- * Cholesky.solve(u, v, s, b)
185
- * Cholesky.svx(u, v, s, bx)
186
- * HH.solve(m, b)
187
- * HH.svx(m, bx)
188
-
175
+ * GSL::Linalg::
176
+ * LU.decomp(m)
177
+ * LU.solve(lu, b)
178
+ * LU.svx(lu, bx)
179
+ * LU.det(lu, sign)
180
+ * LU.lndet(lu)
181
+ * LU.invert(lu, perm)
182
+ * QR.decomp(m)
183
+ * QR.solve(qr, tau, b)
184
+ * QR.svx(qr, tau, bx)
185
+ * SV.decomp(m)
186
+ * SV.solve(u, v, s, b)
187
+ * SV.svx(u, v, s, bx)
188
+ * Cholesky.decomp(m)
189
+ * Cholesky.solve(u, v, s, b)
190
+ * Cholesky.svx(u, v, s, bx)
191
+ * HH.solve(m, b)
192
+ * HH.svx(m, bx)
193
+
189
194
  Mon Apr 18 23:27:16 JST 2005
190
195
  * Improved gsl_narray.c (thanks to T. Horinouchi)
191
196
  * Modified extconf.rb
192
- * Automatic finding of NArray
197
+ * Automatic finding of NArray
193
198
  * Applied a patch by zunda
194
-
199
+
195
200
  Thu Apr 7 18:26:08 JST 2005
196
201
  * Modified extconf.rb
197
-
202
+
198
203
  Mon Mar 21 23:17:56 JST 2005
199
204
  * Version 1.6.2
200
-
205
+
201
206
  Sat Mar 19 01:00:15 JST 2005
202
207
  * Fixed Blas.dgemm, .zgemm
203
208
  * Fixed method re-definitions
204
-
209
+
205
210
  Tue Mar 15 23:20:15 JST 2005
206
- * Added class GSL::Block::Byte, GSL::Block::Index
211
+ * Added class GSL::Block::Byte, GSL::Block::Index
207
212
  * Added NArray-like methods, Vector#eq, ne, gt, where, any? etc.
208
213
  * Added methods Vector#floor, Vector#ceil,
209
- and Vector#round (if the system has)
210
-
214
+ and Vector#round (if the system has)
215
+
211
216
  Sat Mar 12 14:49:47 JST 2005
212
217
  * Fixed Vector#get
213
-
218
+
214
219
  Sat Feb 26 11:18:22 JST 2005
215
220
  * Ruby 1.9.0 support
216
-
221
+
217
222
  Sat Feb 5 03:24:28 JST 2005
218
223
  * Version 1.6.1
219
224
 
220
225
  Wed Jan 26 23:28:07 JST 2005
221
226
  * Added in-place FFT methods
222
227
  * Fixed FFT document
223
-
228
+
224
229
  Thu Jan 20 00:55:26 JST 2005
225
230
  * Added Vector#decimate, Vector#diff
226
231
  * Added Matrix#rot90
227
232
  * Fixed Matrix::Complex
228
-
233
+
229
234
  Thu Jan 06 18:46:02 JST 2005
230
235
  * Some methods which receive GSL::Vector now can also manipulate
231
- NArray objects.
232
- * Special functions
233
- * Probability distributions
234
- * Statistics
235
- * FFTs
236
- * Wavelet transforms
237
- * Interpolations
238
- * Serices accelerations
236
+ NArray objects.
237
+ * Special functions
238
+ * Probability distributions
239
+ * Statistics
240
+ * FFTs
241
+ * Wavelet transforms
242
+ * Interpolations
243
+ * Serices accelerations
239
244
  * Added method Vector#decimate
240
245
  * Sf::exp now can receive Complex or Vector::Complex
241
246
 
242
247
  Tue Jan 04
243
248
  * Version 1.6.0
244
-
249
+
245
250
  Thu Dec 30 04:34:14 JST 2004 Yoshiki Tsunesada
246
251
  * Update for GSL-1.5.90
247
- * Added Sf::psi_1
248
- * Added ODE stepper rk2simp
249
- * Added LQ, PTLQ decompositions
250
- * Added methods Cdf::exppow_P, Cdf::exppow_Q
251
-
252
+ * Added Sf::psi_1
253
+ * Added ODE stepper rk2simp
254
+ * Added LQ, PTLQ decompositions
255
+ * Added methods Cdf::exppow_P, Cdf::exppow_Q
256
+
252
257
  Mon Dec 27 22:19:55 JST 2004 Yoshiki Tsunesada
253
258
  * All Ruby/GSL classes are defined as derivatives of the base class
254
259
  GSL::Object.
@@ -259,25 +264,25 @@ Mon Dec 27 22:19:55 JST 2004 Yoshiki Tsunesada
259
264
  * Added methods Poly.fit, Poly.wfit, MultiFit.polyfit
260
265
  * Added methods Vector::Complex#abs2, abs, arg
261
266
  * Modified FFT methods: now they return FFTed data as a new vector,
262
- and do not destroy the input vector.
263
-
267
+ and do not destroy the input vector.
268
+
264
269
  Sat Dec 11 21:45:30 JST 2004 Yoshiki Tsunesada
265
270
  * Modified Histogram#integral
266
-
271
+
267
272
  Fri Dec 10 14:28:38 JST 2004 Yoshiki Tsunesada
268
273
  * Added methods Histogram#reverse, Histogram2d#integrate,
269
274
  Histogram2d#normalize
270
-
275
+
271
276
  Mon Dec 6 01:15:03 JST 2004 Yoshiki Tsunesada
272
277
  * Version 1.5.4
273
-
278
+
274
279
  Fri Dec 3 22:33:46 JST 2004 Yoshiki Tsunesada
275
280
  * Added Histogram#rebin
276
-
281
+
277
282
  Fri Nov 26 21:17:17 JST 2004 Yoshiki Tsunesada
278
283
  * Added method Vector#to_m
279
284
  * Added methods Matrix#reverse_rows, Matrix#reverse_columns
280
-
285
+
281
286
  Tue Nov 16 23:35:27 JST 2004 Yoshiki Tsunesada
282
287
  * The method Matrix#** is now obsolete, use "*"
283
288
  for matrix multiplication instead.
@@ -285,104 +290,104 @@ Tue Nov 16 23:35:27 JST 2004 Yoshiki Tsunesada
285
290
  * Added methods Vector#to_m_diagonal, Vector#to_m_circulant,
286
291
  Vector#collect
287
292
  * Added methods Matrix.hilbert, Matrix.invhilbert, Matrix.pascal,
288
- Matrix.vandermonde, Matrix.toeplitz, Matrix.circulant
293
+ Matrix.vandermonde, Matrix.toeplitz, Matrix.circulant
289
294
  * Added methods Vector.indgen, Vector#indgen,
290
- Matrix.indgen, Matrix#indgen (mimics NArray)
295
+ Matrix.indgen, Matrix#indgen (mimics NArray)
291
296
  * Added class GSL::Histogram3d
292
297
  * Checked GSL lower version compatibilities
293
- * gsl-1.0 ~ gsl-1.5: OK
294
- * gsl-0.9.4: OK
295
- * gsl-0.9.3 or older: not tested
296
- * gsl-1.6 (development version, CVS Nov2004): OK
297
-
298
+ * gsl-1.0 ~ gsl-1.5: OK
299
+ * gsl-0.9.4: OK
300
+ * gsl-0.9.3 or older: not tested
301
+ * gsl-1.6 (development version, CVS Nov2004): OK
302
+
298
303
  Sun Nov 7 00:56:11 JST 2004 Yoshiki Tsunesada
299
304
  * Support the gsl_tensor package
300
- * http://sources.redhat.com/ml/gsl-discuss/2004-q4/msg00053.html
301
- * Added class GSL::Tensor, GSL::Tensor::Int
305
+ * http://sources.redhat.com/ml/gsl-discuss/2004-q4/msg00053.html
306
+ * Added class GSL::Tensor, GSL::Tensor::Int
302
307
  * The methods Vector#get, Vector#[] now receive multiple
303
- arguments, or an Array, or a Range object.
304
-
308
+ arguments, or an Array, or a Range object.
309
+
305
310
  Thu Nov 4 21:13:38 JST 2004 Yoshiki Tsunesada
306
311
  * Added class GSL::Histogram::Integral, which represents the
307
- cumulative distribution.
312
+ cumulative distribution.
308
313
  * Added method GSL::Histogram#integrate, which creates a
309
- GSL::Histogram::Integral object.
314
+ GSL::Histogram::Integral object.
310
315
  * Added methods GSL::Histogram2d#xproject, yproject, normalize, increment2.
311
-
316
+
312
317
  Sun Oct 31 02:34:28 JST 2004 Yoshiki Tsunesada
313
318
  * Fix the document for Polynomials
314
319
  * Added methods Poly::hermite(n), Poly::cheb(n), and Poly::cheb_II(n) etc..
315
320
  * Added method Poly#compan, which returns the companion matrix.
316
321
  * The method Matrix#/ is improved: if a Vector is given, this method
317
- solves the linear system.
318
-
322
+ solves the linear system.
323
+
319
324
  Mon Oct 25 01:25:12 JST 2004 Yoshiki Tsunesada
320
325
  * Split the source file "randist.c" into "randist.c" and "cdf.c"
321
- * Split the source file "diff.c" into "diff.c" and "deriv.c"
322
- * Split the source file "interp.c" into "interp.c" and "spline.c"
326
+ * Split the source file "diff.c" into "diff.c" and "deriv.c"
327
+ * Split the source file "interp.c" into "interp.c" and "spline.c"
323
328
  * Added methods Vector#abs, sqrt, square, normalize
324
329
  * Added sample scripts odeiv/frei1.rb, fft/frei2.rb
325
- and eigen/qhoscillator.rb, which deal with quantum mechanical
326
- calculations. These are translated from the C++ code in the
327
- Harald Wiedemann's textbook "Numerische Physik"
328
- (Springer 2004, ISBN 3-540-40774-X).
329
-
330
+ and eigen/qhoscillator.rb, which deal with quantum mechanical
331
+ calculations. These are translated from the C++ code in the
332
+ Harald Wiedemann's textbook "Numerische Physik"
333
+ (Springer 2004, ISBN 3-540-40774-X).
334
+
330
335
  Sat Oct 23 19:08:02 JST 2004 Yoshiki Tsunesada
331
336
  * Added a method GSL::Vector#logspace2. The following two are
332
- equivalent:
333
- v1 = Vector.logspace(1, 3, 5)
334
- v2 = Vector.logspace2(10, 1000, 5)
335
-
337
+ equivalent:
338
+ v1 = Vector.logspace(1, 3, 5)
339
+ v2 = Vector.logspace2(10, 1000, 5)
340
+
336
341
  Tue Oct 19 23:23:38 JST 2004 Yoshiki Tsunesada
337
342
  * Support the rngextra package
338
- * http://www.network-theory.co.uk/download/rngextra/
343
+ * http://www.network-theory.co.uk/download/rngextra/
339
344
  * Added two random number generators "rngextra_rng1" and "rngextra_rng2"
340
345
  * Fixed a bug in the method Vector#subvector_with_stride
341
-
346
+
342
347
  Mon Oct 18 22:22:21 JST 2004 Yoshiki Tsunesada
343
348
  * Added a sample script dht.rb
344
-
349
+
345
350
  Fri Oct 8 23:09:00 JST 2004 Yoshiki Tsunesada
346
351
  * Version 1.5.3
347
-
352
+
348
353
  Thu Oct 7 22:47:59 JST 2004 Yoshiki Tsunesada
349
354
  * The methods Vector.graph and GSL::graph improved.
350
355
  * Added sample scripts of special functions and probability distribution
351
- functions.
352
-
356
+ functions.
357
+
353
358
  Sat Oct 2 23:13:49 JST 2004 Yoshiki Tsunesada
354
359
  * Discrete wavelet transform (experimental)
355
360
  * Presently this is only for CVS trackers,
356
361
  since DWT is not supported in the latest version GSL-1.5.
357
362
  * Added methods Vector.connect, Vector#connect
358
-
363
+
359
364
  Thu Sep 30 22:56:47 JST 2004 Yoshiki Tsunesada
360
365
  * The methods Vector#[] and Vector#[]= accept an index of
361
- negative integer. For example, v[-1] returns the last element
362
- of the vector v, v[-2] does the second last, and so on.
363
-
366
+ negative integer. For example, v[-1] returns the last element
367
+ of the vector v, v[-2] does the second last, and so on.
368
+
364
369
  Fri Sep 24 21:52:06 JST 2004 Yoshiki Tsunesada
365
370
  * Fixed bug in Sf::legendre_Ql
366
-
371
+
367
372
  Wed Sep 1 19:02:42 JST 2004 Yoshiki Tsunesada
368
373
  * Version 1.5.2
369
-
374
+
370
375
  Fri Aug 27 03:18:46 JST 2004 Yoshiki Tsunesada
371
376
  * Experimental implementation of GNU plotutils graph and GNUPLOT interfaces
372
377
  * Added unary minus operators for GSL::Vector, GSL::Matrix
373
-
378
+
374
379
  Thu Aug 19 14:28:08 JST 2004 Yoshiki Tsunesada
375
380
  * Added class GSL::Matrix::Int
376
381
  * Correct descriptions of GSL::Matrix#get_row, get_col
377
382
  * Changed behaviour of methods NArray#to_gv, NArray#to_gm,
378
383
  added methods NArray#to_gv_view, NArray#to_gm_view
379
-
384
+
380
385
  Wed Aug 18 02:38:20 JST 2004
381
386
  * Added method GSL::set_error_handler
382
387
 
383
388
  Tue Aug 17 20:59:39 JST 2004
384
389
  * Version 1.5.1
385
-
390
+
386
391
  Sat Aug 14 16:27:05 JST 2004 Yoshiki Tsunesada
387
392
  * Changed behaviour of the methods Odeiv::Evolve#apply, Odeiv::Solver#apply
388
393
  * Fixed bug in GSL::Histogram#get
@@ -393,52 +398,52 @@ Sat Aug 14 16:27:05 JST 2004 Yoshiki Tsunesada
393
398
  Wed Aug 11 14:39:17 JST 2004 Yoshiki Tsunesada
394
399
  * Fixed bug in GSL::Sf::legendle_Ql_e
395
400
  * Fixed bug in GSL::MultiFit.linear
396
-
401
+
397
402
  Tue Aug 10 10:31:21 JST 2004 Yoshiki Tsunesada
398
403
  * Fixed bugs in GSL::Cdf::gumbel2_P, gumbel2_Q
399
404
  * Version 1.5.0
400
-
405
+
401
406
  Fri Aug 6 00:58:29 JST 2004 Yoshiki Tsunesada
402
407
  * Fixed bug in Histogram2d.new_uniform
403
-
408
+
404
409
  4.Aug.2004
405
410
  * Correct source code errors in interp.c, multifit.c
406
-
411
+
407
412
  2.Aug.2004
408
413
  * Added methods GSL::Vector#dot (inner product)
409
414
  * Added classes GSL::Vector::Col < GSL::Vector,
410
- GSL::Vector::Col::View < GSL::Vector::Col
411
-
415
+ GSL::Vector::Col::View < GSL::Vector::Col
416
+
412
417
  1.Aug.2004
413
418
  * Version 0.9.9
414
-
419
+
415
420
  30.Jul.2004
416
421
  * Added methods GSL::Rng.default_seed, GSL::Rng.default_seed=(seed)
417
-
422
+
418
423
  26.Jul.2004
419
424
  * Cumulative distribution functions
420
425
  * Changed module path GSL::Ran:: ---> GSL::Cdf
421
426
  * Constants GSL::VERSION, GSL::RUBY_GSL_VERSION defined
422
-
427
+
423
428
  24.Jul.2004
424
429
  * Experimental implementation of discrete wavelet transforms (tests/wavelet)
425
-
430
+
426
431
  22.Jul.2004
427
432
  * Elementary functions as GSL::sin now can take argument of Integer, Float,
428
- Array, Vector or Matrix.
433
+ Array, Vector or Matrix.
429
434
  * Strict type check
430
-
435
+
431
436
  20.Jul.2004
432
437
  * Added methods GSL::heapsort, Vector#heapsort, Vector::Complex#heapsort
433
438
  * Added methods GSL::heapsort_index, Vector#heapsort_index,
434
- Vector::Complex#heapsort_index
439
+ Vector::Complex#heapsort_index
435
440
  * version 0.9.4
436
-
441
+
437
442
  18.Jul.2004
438
443
  * Added missing functions GSL::Sf::legendre_Ql
439
444
  * Added missing functions GSL::Sf::psi_e
440
445
  * Added missing functions GSL::Sf::zetam1, zetam1_int
441
-
446
+
442
447
  17.Jul.2004
443
448
  * Added GSL::Eigen::Symmv::sort, GSL::Eigen::Hermv::sort
444
449
  * Update GSL::Monte