]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/math/interpolators/cubic_b_spline.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / math / interpolators / cubic_b_spline.hpp
1 // Copyright Nick Thompson, 2017
2 // Use, modification and distribution are subject to the
3 // Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt
5 // or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 // This implements the compactly supported cubic b spline algorithm described in
8 // Kress, Rainer. "Numerical analysis, volume 181 of Graduate Texts in Mathematics." (1998).
9 // Splines of compact support are faster to evaluate and are better conditioned than classical cubic splines.
10
11 // Let f be the function we are trying to interpolate, and s be the interpolating spline.
12 // The routine constructs the interpolant in O(N) time, and evaluating s at a point takes constant time.
13 // The order of accuracy depends on the regularity of the f, however, assuming f is
14 // four-times continuously differentiable, the error is of O(h^4).
15 // In addition, we can differentiate the spline and obtain a good interpolant for f'.
16 // The main restriction of this method is that the samples of f must be evenly spaced.
17 // Look for barycentric rational interpolation for non-evenly sampled data.
18 // Properties:
19 // - s(x_j) = f(x_j)
20 // - All cubic polynomials interpolated exactly
21
22 #ifndef BOOST_MATH_INTERPOLATORS_CUBIC_B_SPLINE_HPP
23 #define BOOST_MATH_INTERPOLATORS_CUBIC_B_SPLINE_HPP
24
25 #include <boost/math/interpolators/detail/cubic_b_spline_detail.hpp>
26
27 namespace boost{ namespace math{
28
29 template <class Real>
30 class cubic_b_spline
31 {
32 public:
33 // If you don't know the value of the derivative at the endpoints, leave them as nans and the routine will estimate them.
34 // f[0] = f(a), f[length -1] = b, step_size = (b - a)/(length -1).
35 template <class BidiIterator>
36 cubic_b_spline(const BidiIterator f, BidiIterator end_p, Real left_endpoint, Real step_size,
37 Real left_endpoint_derivative = std::numeric_limits<Real>::quiet_NaN(),
38 Real right_endpoint_derivative = std::numeric_limits<Real>::quiet_NaN());
39 cubic_b_spline(const Real* const f, size_t length, Real left_endpoint, Real step_size,
40 Real left_endpoint_derivative = std::numeric_limits<Real>::quiet_NaN(),
41 Real right_endpoint_derivative = std::numeric_limits<Real>::quiet_NaN());
42
43 cubic_b_spline() = default;
44 Real operator()(Real x) const;
45
46 Real prime(Real x) const;
47
48 private:
49 std::shared_ptr<detail::cubic_b_spline_imp<Real>> m_imp;
50 };
51
52 template<class Real>
53 cubic_b_spline<Real>::cubic_b_spline(const Real* const f, size_t length, Real left_endpoint, Real step_size,
54 Real left_endpoint_derivative, Real right_endpoint_derivative) : m_imp(std::make_shared<detail::cubic_b_spline_imp<Real>>(f, f + length, left_endpoint, step_size, left_endpoint_derivative, right_endpoint_derivative))
55 {
56 }
57
58 template <class Real>
59 template <class BidiIterator>
60 cubic_b_spline<Real>::cubic_b_spline(BidiIterator f, BidiIterator end_p, Real left_endpoint, Real step_size,
61 Real left_endpoint_derivative, Real right_endpoint_derivative) : m_imp(std::make_shared<detail::cubic_b_spline_imp<Real>>(f, end_p, left_endpoint, step_size, left_endpoint_derivative, right_endpoint_derivative))
62 {
63 }
64
65 template<class Real>
66 Real cubic_b_spline<Real>::operator()(Real x) const
67 {
68 return m_imp->operator()(x);
69 }
70
71 template<class Real>
72 Real cubic_b_spline<Real>::prime(Real x) const
73 {
74 return m_imp->prime(x);
75 }
76
77 }}
78 #endif