Connecting Tech Pros Worldwide Forums | Help | Site Map

Statistics libraries in C/C++

Newbie
 
Join Date: Mar 2007
Posts: 11
#1: Jul 28 '08
Hello,

I am trying to find libraries in C/C++ that can perform statistical analysis, like normalization of data or differential expression.

I was looking for commercial and open source libraries... Can anyone suggest any?

Thank you in advance,

Mokita

Needs Regular Fix
 
Join Date: Sep 2007
Location: The Netherlands
Posts: 427
#2: Jul 28 '08

re: Statistics libraries in C/C++


Most statistical functions are trivially implemented using a decent mathematics library, GSL (C/C++), for example, which has a suite of powerful functions for linear algebra, optimization, least-squares fitting, etc. However, you may find Scythe (C++) easier to use.
On the commercial side, there are the famous NAG libraries (available for many languages) which are admittedly more feature-rich than the free open-source ones.
Reply