![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/thread-self/root/usr/include/boost/math/interpolators/ |
Upload File : |
// Copyright Nick Thompson, 2019 // 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_WHITAKKER_SHANNON_HPP #define BOOST_MATH_INTERPOLATORS_WHITAKKER_SHANNON_HPP #include <memory> #include <boost/math/interpolators/detail/whittaker_shannon_detail.hpp> namespace boost { namespace math { namespace interpolators { template<class RandomAccessContainer> class whittaker_shannon { public: using Real = typename RandomAccessContainer::value_type; whittaker_shannon(RandomAccessContainer&& y, Real const & t0, Real const & h) : m_impl(std::make_shared<detail::whittaker_shannon_detail<RandomAccessContainer>>(std::move(y), t0, h)) {} inline Real operator()(Real t) const { return m_impl->operator()(t); } inline Real prime(Real t) const { return m_impl->prime(t); } inline Real operator[](size_t i) const { return m_impl->operator[](i); } RandomAccessContainer&& return_data() { return m_impl->return_data(); } private: std::shared_ptr<detail::whittaker_shannon_detail<RandomAccessContainer>> m_impl; }; }}} #endif