README 1.1 KB

123456789101112131415161718192021
  1. Armadillo is a high quality C++ linear algebra library useful
  2. for development of algorithms in machine learning, pattern recognition,
  3. signal processing, bioinformatics, statistics, etc.
  4. Armadillo makes extensive use of template meta-programming, recursive templates
  5. and template based function overloading. As such, C++ compilers which do not
  6. fully implement the C++ standard may not work correctly.
  7. The functionality of Armadillo is partly dependent on other libraries:
  8. LAPACK, BLAS and ARPACK. The LAPACK and BLAS libraries are used for
  9. dense matrices, while the ARPACK library is used for sparse matrices.
  10. Armadillo can work without these libraries, but its functionality
  11. will be reduced. In particular, basic functionality will be available
  12. (eg. matrix addition and multiplication), but things like eigen
  13. decomposition or matrix inversion will not be. Matrix multiplication
  14. (mainly for big matrices) may not be as fast.
  15. As Armadillo is a template library, we recommended that optimisation
  16. is enabled during compilation of programs that use Armadillo.
  17. For example, for GCC and Clang compilers use -O2 or -O3