Main MRPT website > C++ reference
MRPT logo
SVD
Go to the documentation of this file.
00001 #ifndef EIGEN_SVD_MODULE_H
00002 #define EIGEN_SVD_MODULE_H
00003 
00004 #include "QR"
00005 #include "Householder"
00006 #include "Jacobi"
00007 
00008 #include "src/Core/util/DisableStupidWarnings.h"
00009 
00010 namespace Eigen {
00011 
00012 /** \defgroup SVD_Module SVD module 
00013  * \ingroup eigen_grp
00014   *
00015   *
00016   *
00017   * This module provides SVD decomposition for (currently) real matrices.
00018   * This decomposition is accessible via the following MatrixBase method:
00019   *  - MatrixBase::svd()
00020   *
00021   * \code
00022   * #include <Eigen/SVD>
00023   * \endcode
00024   */
00025 
00026 #include "src/misc/Solve.h"
00027 #include "src/SVD/JacobiSVD.h"
00028 #include "src/SVD/UpperBidiagonalization.h"
00029 
00030 #ifdef EIGEN2_SUPPORT
00031 #include "src/Eigen2Support/SVD.h"
00032 #endif
00033 
00034 } // namespace Eigen
00035 
00036 #include "src/Core/util/ReenableStupidWarnings.h"
00037 
00038 #endif // EIGEN_SVD_MODULE_H
00039 /* vim: set filetype=cpp et sw=2 ts=2 ai: */



Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011