numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Definition of newton_raphson class. More...
#include <cmath>
#include <limits>
#include <type_traits>
#include <Eigen/LU>
#include "num_collect/base/exception.h"
#include "num_collect/base/index_type.h"
#include "num_collect/base/precondition.h"
#include "num_collect/logging/iterations/iteration_logger.h"
#include "num_collect/logging/log_tag_view.h"
#include "num_collect/logging/logging_macros.h"
#include "num_collect/roots/concepts/differentiable_function.h"
#include "num_collect/roots/concepts/multi_variate_differentiable_function.h"
#include "num_collect/roots/concepts/single_variate_differentiable_function.h"
#include "num_collect/roots/function_root_finder_base.h"
Go to the source code of this file.
Classes | |
class | num_collect::roots::newton_raphson< Function > |
Class of Newton-Raphson method. More... | |
Namespaces | |
namespace | num_collect |
Namespace of num_collect source codes. | |
namespace | num_collect::roots |
Namespace of root-finding algorithms. | |
Variables | |
constexpr auto | num_collect::roots::newton_raphson_tag |
Tag of newton_raphson. | |
Definition of newton_raphson class.
Definition in file newton_raphson.h.