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