2008-05-01 21:53:05 +08:00
|
|
|
#ifndef EIGEN_CHOLESKY_MODULE_H
|
|
|
|
#define EIGEN_CHOLESKY_MODULE_H
|
|
|
|
|
|
|
|
#include "Core"
|
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/DisableStupidWarnings.h"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-05-01 21:53:05 +08:00
|
|
|
namespace Eigen {
|
|
|
|
|
2008-07-22 18:54:42 +08:00
|
|
|
/** \defgroup Cholesky_Module Cholesky module
|
2009-02-02 22:21:35 +08:00
|
|
|
*
|
2010-06-29 22:10:47 +08:00
|
|
|
*
|
2009-02-02 22:21:35 +08:00
|
|
|
*
|
2008-07-22 18:54:42 +08:00
|
|
|
* This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices.
|
|
|
|
* Those decompositions are accessible via the following MatrixBase methods:
|
2008-10-13 23:53:27 +08:00
|
|
|
* - MatrixBase::llt(),
|
|
|
|
* - MatrixBase::ldlt()
|
2008-07-22 18:54:42 +08:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include <Eigen/Cholesky>
|
|
|
|
* \endcode
|
|
|
|
*/
|
|
|
|
|
2009-11-04 00:34:45 +08:00
|
|
|
#include "src/misc/Solve.h"
|
2008-10-13 23:53:27 +08:00
|
|
|
#include "src/Cholesky/LLT.h"
|
|
|
|
#include "src/Cholesky/LDLT.h"
|
2008-05-01 21:53:05 +08:00
|
|
|
|
|
|
|
} // namespace Eigen
|
|
|
|
|
2011-02-22 22:31:22 +08:00
|
|
|
#include "src/Core/util/ReenableStupidWarnings.h"
|
2008-12-19 04:48:02 +08:00
|
|
|
|
2008-05-01 21:53:05 +08:00
|
|
|
#endif // EIGEN_CHOLESKY_MODULE_H
|
2009-12-02 07:00:29 +08:00
|
|
|
/* vim: set filetype=cpp et sw=2 ts=2 ai: */
|