What's a good C++ library for matrix operations

前端 未结 8 1327
温柔的废话
温柔的废话 2021-01-04 09:31

I need to do multiplication on matrices. I\'m looking for a library that can do it fast. I\'m using the Visual C++ 2008 compiler and I have a core i7 860 so if the library i

相关标签:
8条回答
  • 2021-01-04 10:33

    FWIW, Eigen 3 uses threads (OpenMP) for matrix products (in reply to above statement about Eigen not using threads).

    0 讨论(0)
  • 2021-01-04 10:33

    Look into Eigen. It should have all you need.

    0 讨论(0)
提交回复
热议问题