| GNU Scientific Library | |
|---|---|
| Latest release | 1.10 / 15 September 2007 |
| Genre | Numerical library |
| License | GNU General Public License |
| Website | http://www.gnu.org/software/gsl/ |
In computing, GNU Scientific Library (or GSL) is a software library written in the C programming language for numerical calculations in applied mathematics and science. The GSL is part of the GNU project and is distributed under the GNU General Public License. The GSL can be used in C++, but not using pointers to member functions. C++ programmers have to use static functions redirecting to the correct member function, since the address used for static member functions in C++ is compatible with the GSL.
Contents |
Example
The following example program calculates the value of the Bessel function for 5 [1]:
#include <stdio.h>
#include <gsl/gsl_sf_bessel.h>
int
main (void)
{
double x = 5.0;
double y = gsl_sf_bessel_J0 (x);
printf ("J0(%g) = %.18e\n", x, y);
return 0;
}
The example program has to be linked to the GSL library upon compilation:
gcc $(gsl-config --cflags) example.c $(gsl-config --libs)
The output is shown below, and should be correct to double-precision accuracy:
J0(5) = -1.775967713143382920e-01
Features
The software library provides facilities for:
- Basic mathematical functions
- Complex numbers
- Polynomials
- Special functions
- Vectors and matrices
- Permutations
- Combinations
- Sorting
- BLAS
- Linear algebra
- Eigensystems
- Fast Fourier transforms
- Numerical integration
- Random number generation
- Quasi-random sequences
- Random number distributions
- Statistics
- Histograms
- N-tuples
- Monte Carlo integration
- Simulated annealing
- Ordinary differential equations
- Interpolation
- Numerical differentiation
- Chebyshev approximations
- Series acceleration
- Discrete Hankel transform
- Root-finding in one and multiple dimensions
- Minimization in one and multiple dimensions
- Least-squares fitting
- Nonlinear least-squares fitting
- Physical constants
- IEEE floating-point arithmetic
See also
| Free software Portal |
External links
|
|
||
|---|---|---|
| History | GNU Manifesto · GNU Project · Free Software Foundation · History of free software | |
| GNU licences | GNU General Public License · GNU Lesser General Public License · Affero General Public License · GNU Free Documentation License · GPL linking exception | |
| Software | GNU (Variants) · GNOME · Gnuzilla · IceCat · Gnash · Bash · GCC · GNU Emacs · glibc · Coreutils · GNU build system · Other GNU packages and programs | |
| Speakers | Robert J. Chassell · Loïc Dachary · Ricardo Galli · Georg C. F. Greve · Federico Heinz · Benjamin Mako Hill · Bradley M. Kuhn · Eben Moglen · Brett Smith · Richard Stallman · John Sullivan | |


