123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /*
- * Copyright Nick Thompson, 2020
- * Use, modification and distribution are subject to the
- * Boost Software License, Version 1.0. (See accompanying file
- * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- */
- #ifndef BOOST_MATH_INTERPOLATORS_QUINTIC_HERMITE_HPP
- #define BOOST_MATH_INTERPOLATORS_QUINTIC_HERMITE_HPP
- #include <algorithm>
- #include <stdexcept>
- #include <memory>
- #include <boost/math/interpolators/detail/quintic_hermite_detail.hpp>
- namespace boost {
- namespace math {
- namespace interpolators {
- template<class RandomAccessContainer>
- class quintic_hermite {
- public:
- using Real = typename RandomAccessContainer::value_type;
- quintic_hermite(RandomAccessContainer && x, RandomAccessContainer && y, RandomAccessContainer && dydx, RandomAccessContainer && d2ydx2)
- : impl_(std::make_shared<detail::quintic_hermite_detail<RandomAccessContainer>>(std::move(x), std::move(y), std::move(dydx), std::move(d2ydx2)))
- {}
- Real operator()(Real x) const
- {
- return impl_->operator()(x);
- }
- Real prime(Real x) const
- {
- return impl_->prime(x);
- }
- Real double_prime(Real x) const
- {
- return impl_->double_prime(x);
- }
- friend std::ostream& operator<<(std::ostream & os, const quintic_hermite & m)
- {
- os << *m.impl_;
- return os;
- }
- void push_back(Real x, Real y, Real dydx, Real d2ydx2)
- {
- impl_->push_back(x, y, dydx, d2ydx2);
- }
- int64_t bytes() const
- {
- return impl_->bytes() + sizeof(impl_);
- }
- std::pair<Real, Real> domain() const
- {
- return impl_->domain();
- }
- private:
- std::shared_ptr<detail::quintic_hermite_detail<RandomAccessContainer>> impl_;
- };
- template<class RandomAccessContainer>
- class cardinal_quintic_hermite {
- public:
- using Real = typename RandomAccessContainer::value_type;
- cardinal_quintic_hermite(RandomAccessContainer && y, RandomAccessContainer && dydx, RandomAccessContainer && d2ydx2, Real x0, Real dx)
- : impl_(std::make_shared<detail::cardinal_quintic_hermite_detail<RandomAccessContainer>>(std::move(y), std::move(dydx), std::move(d2ydx2), x0, dx))
- {}
- inline Real operator()(Real x) const {
- return impl_->operator()(x);
- }
- inline Real prime(Real x) const {
- return impl_->prime(x);
- }
- inline Real double_prime(Real x) const
- {
- return impl_->double_prime(x);
- }
- int64_t bytes() const
- {
- return impl_->bytes() + sizeof(impl_);
- }
- std::pair<Real, Real> domain() const
- {
- return impl_->domain();
- }
- private:
- std::shared_ptr<detail::cardinal_quintic_hermite_detail<RandomAccessContainer>> impl_;
- };
- template<class RandomAccessContainer>
- class cardinal_quintic_hermite_aos {
- public:
- using Point = typename RandomAccessContainer::value_type;
- using Real = typename Point::value_type;
- cardinal_quintic_hermite_aos(RandomAccessContainer && data, Real x0, Real dx)
- : impl_(std::make_shared<detail::cardinal_quintic_hermite_detail_aos<RandomAccessContainer>>(std::move(data), x0, dx))
- {}
- inline Real operator()(Real x) const
- {
- return impl_->operator()(x);
- }
- inline Real prime(Real x) const
- {
- return impl_->prime(x);
- }
- inline Real double_prime(Real x) const
- {
- return impl_->double_prime(x);
- }
- int64_t bytes() const
- {
- return impl_->bytes() + sizeof(impl_);
- }
- std::pair<Real, Real> domain() const
- {
- return impl_->domain();
- }
- private:
- std::shared_ptr<detail::cardinal_quintic_hermite_detail_aos<RandomAccessContainer>> impl_;
- };
- }
- }
- }
- #endif
|