Fiddle with Eigen+FFT tests and add nonsymmetric eigenvalue example
[Math-GSL.git] / Changes
blobdd6bc89c835b95838511e340f4dce11a13362ce2
1 =head1 Math::GSL Changes
3 =head1 v0.16 - November ?? 2008
4     - Operator overloading for addition and subtraction with vectors
5     - Added copy() method to vectors
6     - Improved Vector docs
7     - Sped up vector dot products by 15x using BLAS function gsl_blas_ddot
8         NOTE: using gsl_blas_ddot($x->raw,$y->raw) directly is still about 10 times faster 
9               than $x * $y due to error checking and function call overhead
10     - Separated POD and Perl code out of SWIG interface files, yay for proper syntax
11         highlighting
12     - Added stub test files for Heapsort, IEEEUtils, Multimin, Siman, Wavelet2D
15 =head1 v0.14 - October 21 2008
16     - Chebyshev Series Approximation, with tests and docs
17     - Examples and new documentation in Statistics, as well as tests (Thierry)
18     - Bugfixes relating to compiling on 64bit Red Hat Linux, reported by Michael Roberge
19     - Improved FFT, Deriv, Integration, Chebyshev, Combination and Roots docs
20     - Documentation for Math::GSL::Test 
21     - Improved introduction examples in Math::GSL
22     - Improved Minimization subsystem tests, but it is not functional
23     - Added examples/fft/forward_real
24     - Added example/deriv/basic
26         This shows the simple fact that d/dx(sin(x)) = cos(x)
28     - Added example/sf/erfc_check (thanks to Keith Lofstrom)
30         Script which tests the erfc() special function against computing
31         the integral definition with gsl_integration_qagiu()
33     - Added example/vector/speed 
34     
35         This shows a considerable performance boost using Math::GSL::Vectors
36         instead of List::Util when searching for the min and max elements of
37         large sets of random numbers.
39     - Fixed return signature of gsl_deriv_* functions to return a flat list
40     - Fixed some failing tests relating to  -Duselongdouble (Sisyphus)
41     - Fix location of shared objects (Sisyphus)
42     - Added raw() method to RNG objects
44 =head1 v0.12 - September 14 2008
46     - Darwin support! 
47     - Minimum Perl version changed to 5.8.0
48     - Make platform check compile time constants for performance
49         aka The Wilhelm Speedup (thanks to Eric Wilhelm <scratchcomputing@gmail.com>)
50     - FFT for real data
51     - Numerical derivatives fully implemented
52     - Integration subsystem, gsl_integrate_qags() and gsl_integrate_qagi(), etc..
53         - QNG    : Non-adaptive Gaussian (uses fixed number of sample points in interval)
54         - QAG(S) : Adaptive Gaussian (Singluar) (slices interval up based on properties of the function)
55         - QAGI   : Adaptive Gaussian with infinite integration range
56         - other are supported but not tested
57     - Initial Monte tests
58     - Initial Multiroots tests
59     - More nan/inf fixes on MSWin32 from <sisyphus@cpan.org>
60     - Stripping of binaries on Windows, which significantly reduces size
61         from <sisyphus@cpan.org>
62     - Full support and tests for all functions in the Sort subsystem
63     - Added 'examples/benchmark/sort' to show performance of gsl_sort()
64     - Added 'examples/clicker/chart' to show graphing of functions
65     - Added 'examples/gsl_repl' which is a rapid protyping tool/interactive interpreter
66     - Compile support for GSL's as old as 1.8 (test suite still needs to be properly guarded)
68 =head1 v0.10 
70     - Continued porting to MSWin32, fixing many NaN and Inf handling issues
72 =head1 v0.08
74     - Large documentation improvements
75     - MSWin32 support thanks to testing and feedback from <sisyphus@cpan.org>
77 =head1 v0.07 
79     - Initial CPAN release
80     
81 =head1 v0.042 
83     - Started change to Test::Class
85 =head1 v0.01 
87     - Added swig interface files and swig-ified build script
88     - initial tests for special function library gsl_sf <--> Math::GSL::Sf
89     - Proof Of Concept: makegsl and testgsl