Index of /guides/c-programming/Examples/GSL-HowTo/
| Name | Last Modified | Size |
|---|---|---|
| 2013-12-02 21:44 | - | |
| 2012-11-20 16:35 | 1k | |
| 2012-11-14 21:07 | 2k | |
| 2012-11-14 21:07 | 3k | |
| 2012-11-14 21:07 | 5k | |
| 2012-11-20 16:02 | 2k | |
| 2012-11-14 21:07 | 3k | |
| 2012-11-14 21:07 | 6k | |
| 2012-11-20 15:57 | 2k |
PJ 2011-03-1
Most of these examples are not original.
I fixed up the files that start with "example-XYZ.c".
Most of the other examples are from the GSL documentation
or from this OSU website:
http://www.physics.ohio-state.edu/~ntg/780/gsl_examples/
The only changes I made to the OSU examples related to
compiling these programs with Emacs (the local variables
at the bottom) as well as a few small cosmetic fixes.
Note that programs using GSL can be compiled and then linked,
as with these two commands:
gcc -Wall -c program.c
gcc -o program program.o -lgsl -lgslcblas -lm
or one can do the compiling and the linking all at once:
gcc -Wall -o program program.c -lgsl -lgslcblas -lm
Proudly Served by LiteSpeed Web Server at pj.freefaculty.org Port 443