5 ms·
Agree, non-informative article. If you're doing linear algebra, it is always a good idea to notice and then use a library. Even in c/c++ using eigen[1] or mkl[2
by chuckcode 11y ago
Agree, non-informative article. If you're doing linear algebra, it is always a good idea to notice and then use a library. Even in c/c++ using eigen[1] or mkl[2] for speed and stability is a good idea when doing linear algebra.
[1]http://eigen.tuxfamily.org/index.php?title=Main_Page http://eigen.tuxfamily.org/index.php?title=Main_Page
[2]https://software.intel.com/en-us/intel-mkl https://software.intel.com/en-us/intel-mkl
- therobot24 11y agoI like eigen, but their documentation is very lacking (only contains basic usage and toy examples). However, this isn't what caused me to abandon the library, it was the lack of support for 3-dimensional matrices.
- chuckcode 11y agotherobot24 - What libraries do you like better? Eigen is my current favorite free linear algebra library but it doesn't have 3d matrices and doesn't support avx instructions which are both areas for improvement.
- therobot24 11y agoUnfortunately I wasn't able find one to best suit my needs so I ended up implementing a lot of the structure manually.