This component ports Eigen library into the esp-idf.
Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.
For more information go to http://eigen.tuxfamily.org/.
For pull request, bug reports, and feature requests, go to https://gitlab.com/libeigen/eigen.
This example shows how to use Eigen library in ESP-IDF projects.
The example does matrix multiplication and single value decomposition (SVD) transformation.
This example does not require any special hardware, and can be run on any common development board.
To run the example on target please run:
idf.py -p PORT flash monitor
Copy to Clipboard
idf.py add-dependency "espressif/eigen^3.4.0~2"
To create a project from this example, run:
Copy to Clipboard
idf.py create-project-from-example "espressif/eigen^3.4.0~2:svd"
Copy to Clipboard
Copy to Clipboard