GNU Scientific Library

From Wikipedia, the free encyclopedia

Code using the library and the computed results
Code using the library and the computed results

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

[edit] 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:

g++ -L/usr/local/lib example.c -lgsl -lgslcblas  -lm

The output is shown below, and should be correct to double-precision accuracy:

J0(5) = -1.775967713143382920e-01

[edit] Features

The software library provides facilities for:

[edit] See also

[edit] External links