mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-03 06:50:57 +08:00
e5de9e5226
- all what's not in unsupported/ is considered stable API (except internal stuff e.g. expression templates).
42 lines
811 B
C++
42 lines
811 B
C++
#ifndef EIGEN_QR_MODULE_H
|
|
#define EIGEN_QR_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
#include "src/Core/util/DisableMSVCWarnings.h"
|
|
|
|
#include "Cholesky"
|
|
#include "Jacobi"
|
|
#include "Householder"
|
|
|
|
namespace Eigen {
|
|
|
|
/** \defgroup QR_Module QR module
|
|
*
|
|
*
|
|
*
|
|
* This module provides various QR decompositions
|
|
* This module also provides some MatrixBase methods, including:
|
|
* - MatrixBase::qr(),
|
|
*
|
|
* \code
|
|
* #include <Eigen/QR>
|
|
* \endcode
|
|
*/
|
|
|
|
#include "src/misc/Solve.h"
|
|
#include "src/QR/HouseholderQR.h"
|
|
#include "src/QR/FullPivHouseholderQR.h"
|
|
#include "src/QR/ColPivHouseholderQR.h"
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
#include "src/Core/util/EnableMSVCWarnings.h"
|
|
|
|
// FIXME for compatibility we include Eigenvalues here:
|
|
#include "Eigenvalues"
|
|
|
|
#endif // EIGEN_QR_MODULE_H
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|