Add BDCSVD_LAPACKE binding

This commit is contained in:
Melven Roehrig-Zoellner
2022-12-09 18:50:12 +00:00
committed by Rasmus Munk Larsen
parent 03c9b4738c
commit 273f803846
6 changed files with 185 additions and 4 deletions

View File

@@ -106,6 +106,12 @@ svd.compute(m1);
\endcode</td><td>\code
?gesvd
\endcode</td></tr>
<tr class="alt"><td>Singular value decomposition \n \c EIGEN_USE_LAPACKE \n \c EIGEN_USE_LAPACKE_STRICT </td><td>\code
BDCSVD<MatrixXd> svd;
svd.compute(m1);
\endcode</td><td>\code
?gesdd
\endcode</td></tr>
<tr><td>Eigen-value decompositions \n \c EIGEN_USE_LAPACKE \n \c EIGEN_USE_LAPACKE_STRICT </td><td>\code
EigenSolver<MatrixXd> es(m1);
ComplexEigenSolver<MatrixXcd> ces(m1);