/*============================================================================= Copyright (c) 2011-2015 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under 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 SPROUT_NUMERIC_DFT_FIT_DFT_HPP #define SPROUT_NUMERIC_DFT_FIT_DFT_HPP #include #include #include #include #include #include #include #include #include namespace sprout { namespace fit { namespace detail { template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type dft_impl( ForwardIterator first, ForwardIterator last, Result const& result, typename sprout::container_traits::difference_type offset ) { return sprout::sub_copy( sprout::get_internal(sprout::fixed::dft(first, last, result)), offset, offset + sprout::fit_size(result, sprout::distance(first, last)) ); } } // namespace detail // // dft // template inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm::type dft(ForwardIterator first, ForwardIterator last, Result const& result) { return sprout::fit::detail::dft_impl(first, last, result, sprout::internal_begin_offset(result)); } template inline SPROUT_CONSTEXPR typename sprout::fixed::results::algorithm::type dft(ForwardIterator first, ForwardIterator last) { return sprout::fit::dft(first, last, sprout::pit()); } } // namespace fit } // namespace sprout #endif // #ifndef SPROUT_NUMERIC_DFT_FIT_DFT_HPP