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.
Cholesky.h
00001 #ifndef EIGEN_CHOLESKY_MODULE_H 00002 #define EIGEN_CHOLESKY_MODULE_H 00003 00004 #include "Core.h" 00005 00006 #include "src/Core/util/DisableStupidWarnings.h" 00007 00008 /** \defgroup Cholesky_Module Cholesky module 00009 * 00010 * 00011 * 00012 * This module provides two variants of the Cholesky decomposition for selfadjoint (hermitian) matrices. 00013 * Those decompositions are accessible via the following MatrixBase methods: 00014 * - MatrixBase::llt(), 00015 * - MatrixBase::ldlt() 00016 * 00017 * \code 00018 * #include <Eigen/Cholesky> 00019 * \endcode 00020 */ 00021 00022 #include "src/misc/Solve.h" 00023 #include "src/Cholesky/LLT.h" 00024 #include "src/Cholesky/LDLT.h" 00025 #ifdef EIGEN_USE_LAPACKE 00026 #include "src/Cholesky/LLT_MKL.h" 00027 #endif 00028 00029 #include "src/Core/util/ReenableStupidWarnings.h" 00030 00031 #endif // EIGEN_CHOLESKY_MODULE_H 00032 /* vim: set filetype=cpp et sw=2 ts=2 ai: */
Generated on Thu Nov 17 2022 22:01:27 by
1.7.2