0

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

BhanuKiran
  • 2,631
  • 3
  • 20
  • 36
  • Please take some time to refresh [the help pages](http://stackoverflow.com/help), especially ["What topics can I ask about here?"](http://stackoverflow.com/help/on-topic) – Some programmer dude Feb 25 '20 at 13:17
  • 1
    [cppreference.com](https://en.cppreference.com/w/) provides an overview about what is covered in std libraries. – Scheff's Cat Feb 25 '20 at 13:19

1 Answers1

3

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”.

Maxim Egorushkin
  • 131,725
  • 17
  • 180
  • 271