2012-12-07 22:47:13 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
// for linear algebra.
|
|
|
|
//
|
|
|
|
// Copyright (C) 2009 Thomas Capricelli <orzel@freehackers.org>
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla
|
|
|
|
// Public License v. 2.0. If a copy of the MPL was not distributed
|
|
|
|
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
#ifndef EIGEN_LEVENBERGMARQUARDT_MODULE
|
|
|
|
#define EIGEN_LEVENBERGMARQUARDT_MODULE
|
|
|
|
|
|
|
|
// #include <vector>
|
|
|
|
|
2018-09-17 15:54:29 +08:00
|
|
|
#include "../../Eigen/Core"
|
|
|
|
#include "../../Eigen/Jacobi"
|
|
|
|
#include "../../Eigen/QR"
|
|
|
|
#include "NumericalDiff"
|
2013-02-20 21:10:14 +08:00
|
|
|
|
2018-09-17 15:54:29 +08:00
|
|
|
#include "../../Eigen/SparseQR"
|
2012-12-07 22:47:13 +08:00
|
|
|
|
2013-01-11 17:40:35 +08:00
|
|
|
/**
|
|
|
|
* \defgroup LevenbergMarquardt_Module Levenberg-Marquardt module
|
2012-12-07 22:47:13 +08:00
|
|
|
*
|
|
|
|
* \code
|
|
|
|
* #include </Eigen/LevenbergMarquardt>
|
|
|
|
* \endcode
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-09-17 15:54:29 +08:00
|
|
|
#include "../../Eigen/SparseCore"
|
2018-08-29 00:32:39 +08:00
|
|
|
|
|
|
|
#include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
|
|
|
|
|
2012-12-07 22:47:13 +08:00
|
|
|
#ifndef EIGEN_PARSED_BY_DOXYGEN
|
|
|
|
|
|
|
|
#include "src/LevenbergMarquardt/LMqrsolv.h"
|
2012-12-09 01:17:18 +08:00
|
|
|
#include "src/LevenbergMarquardt/LMcovar.h"
|
|
|
|
#include "src/LevenbergMarquardt/LMpar.h"
|
2012-12-07 22:47:13 +08:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "src/LevenbergMarquardt/LevenbergMarquardt.h"
|
2012-12-09 01:17:18 +08:00
|
|
|
#include "src/LevenbergMarquardt/LMonestep.h"
|
2012-12-07 22:47:13 +08:00
|
|
|
|
2018-08-29 00:32:39 +08:00
|
|
|
#include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
|
2012-12-07 22:47:13 +08:00
|
|
|
|
|
|
|
#endif // EIGEN_LEVENBERGMARQUARDT_MODULE
|