Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
QR.h
00001 #ifndef EIGEN_QR_MODULE_H 00002 #define EIGEN_QR_MODULE_H 00003 00004 #include "Core.h" 00005 00006 #include "src/Core/util/DisableStupidWarnings.h" 00007 00008 #include "Cholesky.h" 00009 #include "Jacobi.h" 00010 #include "Householder.h" 00011 00012 /** \defgroup QR_Module QR module 00013 * 00014 * 00015 * 00016 * This module provides various QR decompositions 00017 * This module also provides some MatrixBase methods, including: 00018 * - MatrixBase::qr(), 00019 * 00020 * \code 00021 * #include <Eigen/QR> 00022 * \endcode 00023 */ 00024 00025 #include "src/misc/Solve.h" 00026 #include "src/QR/HouseholderQR.h" 00027 #include "src/QR/FullPivHouseholderQR.h" 00028 #include "src/QR/ColPivHouseholderQR.h" 00029 #ifdef EIGEN_USE_LAPACKE 00030 #include "src/QR/HouseholderQR_MKL.h" 00031 #include "src/QR/ColPivHouseholderQR_MKL.h" 00032 #endif 00033 00034 #ifdef EIGEN2_SUPPORT 00035 #include "src/Eigen2Support/QR.h" 00036 #endif 00037 00038 #include "src/Core/util/ReenableStupidWarnings.h" 00039 00040 #ifdef EIGEN2_SUPPORT 00041 #include "Eigenvalues" 00042 #endif 00043 00044 #endif // EIGEN_QR_MODULE_H 00045 /* vim: set filetype=cpp et sw=2 ts=2 ai: */
Generated on Thu Nov 17 2022 22:01:30 by
1.7.2