Update Changes
[Math-GSL.git] / Changes
bloba2d8326b06e6f98484c3b03be7235f8fa5aba113
1 =head1 Math::GSL Changes
3 =head1 v0.18 - ???
5     - Make Math::GSL play nice with upcoming GSL 1.12
6     - Added swap() to Vector objects with tests and docs
7     - Added p-norms to Vector objects via norm() and normalize()
8     - Added operator overloading so that
9             abs $vector == $vector->norm
10     - Added as_vector() to Matrix and MatrixComplex objects
11     - Added inverse(), is_square(), det(),  lndet(), zero() and identity()
12         to Matrix objects
13     - Added inverse(), is_square(), det(),  lndet(), zero(), identity() 
14         and hermitian() to MatrixComplex objects
15     - Added dot product to Matrix objects
16     - Fix various typos in documentation
17     - Fix warnings about overloaded operators in Matrix and BLAS
18     - Overload '==' and '!=' for MatrixComplex and Matrix objects
20 =head1 v0.16 - December 14 2008 (Happy Snowpocalypse PDX!)
22     - Fixed RT#40947: configure_requires ExtUtils::PkgConfig bug
23     - Added reverse() and swap() methods to VectorComplex objects with tests and docs
24     - as_list() and get() now work on VectorComplex objects
25         as_list() returns a list of Math::Complex objects
26         get() returns a list of Math::GSL::Complex objects
27     - Math::GSL::Test::ok_status() now takes an optional message argument
28     - Added KNOWN_BUGS
29     - Added Math::GSL::Test::is_status_ok()
30     - New subsytems: VectorComplex and MatrixComplex
31     - Operator overloading for addition and subtraction with vectors
32     - Added example: examples/matrix/nonsymmetric_eigen
33         Shows how to find the eigenvalues of a nonsymmetric matrix
34     - Added copy() method to vectors
35     - Improved Vector docs
36     - Sped up vector dot products by 15x using BLAS function gsl_blas_ddot
37         NOTE: using gsl_blas_ddot($x->raw,$y->raw) directly is still about 10 times faster
38               than $x * $y due to error checking and function call overhead
39     - Separated POD and Perl code out of SWIG interface files, yay for proper syntax
40         highlighting
41     - Added stub test files for Heapsort, IEEEUtils, Multimin, Siman, Wavelet2D
42     - All test files now keep track of how many tests should run
43     - Fix an include bug in Histogram2D which caused the build to fail (Thierry)
44     - Operator overloading for addition, multiplication and subtraction on Matrix objects (Thierry)
47 =head1 v0.14 - October 21 2008
49     - Chebyshev Series Approximation, with tests and docs
50     - Examples and new documentation in Statistics, as well as tests (Thierry)
51     - Bugfixes relating to compiling on 64bit Red Hat Linux, reported by Michael Roberge
52     - Improved FFT, Deriv, Integration, Chebyshev, Combination and Roots docs
53     - Documentation for Math::GSL::Test 
54     - Improved introduction examples in Math::GSL
55     - Improved Minimization subsystem tests, but it is not functional
56     - Added examples/fft/forward_real
57     - Added example/deriv/basic
59         This shows the simple fact that d/dx(sin(x)) = cos(x)
61     - Added example/sf/erfc_check (thanks to Keith Lofstrom)
63         Script which tests the erfc() special function against computing
64         the integral definition with gsl_integration_qagiu()
66     - Added example/vector/speed 
67     
68         This shows a considerable performance boost using Math::GSL::Vectors
69         instead of List::Util when searching for the min and max elements of
70         large sets of random numbers.
72     - Fixed return signature of gsl_deriv_* functions to return a flat list
73     - Fixed some failing tests relating to  -Duselongdouble (Sisyphus)
74     - Fix location of shared objects (Sisyphus)
75     - Added raw() method to RNG objects
77 =head1 v0.12 - September 14 2008
79     - Darwin support! 
80     - Minimum Perl version changed to 5.8.0
81     - Make platform check compile time constants for performance
82         aka The Wilhelm Speedup (thanks to Eric Wilhelm <scratchcomputing@gmail.com>)
83     - FFT for real data
84     - Numerical derivatives fully implemented
85     - Integration subsystem, gsl_integrate_qags() and gsl_integrate_qagi(), etc..
86         - QNG    : Non-adaptive Gaussian (uses fixed number of sample points in interval)
87         - QAG(S) : Adaptive Gaussian (Singluar) (slices interval up based on properties of the function)
88         - QAGI   : Adaptive Gaussian with infinite integration range
89         - other are supported but not tested
90     - Initial Monte tests
91     - Initial Multiroots tests
92     - More nan/inf fixes on MSWin32 from <sisyphus@cpan.org>
93     - Stripping of binaries on Windows, which significantly reduces size
94         from <sisyphus@cpan.org>
95     - Full support and tests for all functions in the Sort subsystem
96     - Added 'examples/benchmark/sort' to show performance of gsl_sort()
97     - Added 'examples/clicker/chart' to show graphing of functions
98     - Added 'examples/gsl_repl' which is a rapid protyping tool/interactive interpreter
99     - Compile support for GSL's as old as 1.8 (test suite still needs to be properly guarded)
101 =head1 v0.10 
103     - Continued porting to MSWin32, fixing many NaN and Inf handling issues
105 =head1 v0.08
107     - Large documentation improvements
108     - MSWin32 support thanks to testing and feedback from <sisyphus@cpan.org>
110 =head1 v0.07 
112     - Initial CPAN release
113     
114 =head1 v0.042 
116     - Started change to Test::Class
118 =head1 v0.01 
120     - Added swig interface files and swig-ified build script
121     - initial tests for special function library gsl_sf <--> Math::GSL::Sf
122     - Proof Of Concept: makegsl and testgsl