Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best stats library for C (not C++) [closed]

Tags:

c

statistics

Anyone know of a good statistics library for C? I'm looking for something that is commonly used and not a small project. EDIT: must be free!

like image 881
Tyler Brock Avatar asked Nov 22 '09 01:11

Tyler Brock


2 Answers

gsl (http://www.gnu.org/software/gsl/) is widely available, portable, and has a lot of nice functionality.

like image 76
Jonathan Chang Avatar answered Sep 22 '22 12:09

Jonathan Chang


Statistics are frequently done in other languages, but some of those languages will be callable from C. I'd recommend looking at R and Octave; the latter is an open source Matlab work-alike. Both are programming languages in their own right, but many other languages can be called from C.

like image 28
Michael Ekstrand Avatar answered Sep 19 '22 12:09

Michael Ekstrand