c++g++gcc9

GCC Native matrix operations libraries


I wonder there are any native matrices operation library that come with standard gcc/glibc/g++. installation. I see that there are many third party libraries boost, armadillo etc. provide implementations.

But I am wondering with the newer gcc 9.2 version, If there are any native libraries that are offering matrix operations instead of using third party libraries.

Thanks


Solution

  • There is no matrix or linear algebra support in the C++ standard library as of C++20.

    There is a proposal to add linear algebra support to the C++ standard library, P1385R5, targeted for C++23. Also video C++Now 2019: Bob Steagall “Linear Algebra for the Standard C++ Library”.