CbmRoot
|
Collection of generic mathematical methods. More...
#include <cstddef>
Go to the source code of this file.
Namespaces | |
namespace | cbm |
namespace | cbm::algo |
namespace | cbm::algo::kf |
namespace | cbm::algo::kf::math |
Functions | |
constexpr size_t | cbm::algo::kf::math::NofPolCoefficients (size_t N, size_t M) |
Number of coefficients in a polynomial. | |
template<size_t N, typename T > | |
constexpr T | cbm::algo::kf::math::Horner (const T *c, const T &x) |
Horner's scheme for a 1D-polynomial estimation. | |
template<size_t N, typename T , typename... Args> | |
constexpr T | cbm::algo::kf::math::Horner (const T *c, const T &x1, Args... xI) |
Horner's scheme for a multidvariable polynomial estimation. | |