I have an existing C program that is using BLAS/LAPACK as
external linear algebra library.
For various reason I would like to transform this into a header
based C++ program with no external dependency to dynamic
library.
Obviously Eigen can fit such a role as it has all the functionality
of BLAS.
But my question is does there exist a way to have BLAS/LAPACK
like API from Eigen? At present it seems to be no, but maybe
someone has done it.
Mathieu