C library for linear algebra
Please, give me some tips for a HIGH PERFORMANCE C library for linear algebra (matrix algebra, eigenvalues, eigenvectors etc.). Can be both open-source or closed-source.
EDIT Thanks to comments from osgx:
I know both LAPACK and GSL and I can recommend both of them. LAPACK is very low-level library and GSL may be more comfortable to use, but speaking of good performance -- BLAS-based library it is.
ATLAS, maybe?
Edit: if you're open to C++, you should definitely check Eigen, it's a very neat library, and pretty fast too, according to the benchmarks.
Again if you are actually looking/open for modern C++ code, Armadillo is getting really hyped/popular. Also see their own benchmarking against IT++ and Newmat .
链接地址: http://www.djcxy.com/p/62978.html上一篇: 精确的大型有限域线性代数库(如GF(2 ^ 128)/ GF(2 ^ 256))
下一篇: 用于线性代数的C库