2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 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)
|
|
|
|
=============================================================================*/
|
2012-04-10 03:54:38 +00:00
|
|
|
#ifndef SPROUT_NUMERIC_DFT_FIT_DFT_HPP
|
|
|
|
#define SPROUT_NUMERIC_DFT_FIT_DFT_HPP
|
2012-02-25 14:59:46 +00:00
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2013-02-01 11:21:01 +00:00
|
|
|
#include <sprout/iterator/distance.hpp>
|
2012-03-31 07:24:13 +00:00
|
|
|
#include <sprout/container/traits.hpp>
|
|
|
|
#include <sprout/container/functions.hpp>
|
2012-04-10 03:54:38 +00:00
|
|
|
#include <sprout/numeric/dft/fixed/dft.hpp>
|
2012-02-25 14:59:46 +00:00
|
|
|
#include <sprout/algorithm/fit/result_of.hpp>
|
2013-08-08 09:54:33 +00:00
|
|
|
#include <sprout/sub_array/sub_array.hpp>
|
2013-02-07 14:12:57 +00:00
|
|
|
#include <sprout/sub_array/sub.hpp>
|
|
|
|
#include <sprout/pit/pit.hpp>
|
2012-02-25 14:59:46 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fit {
|
|
|
|
namespace detail {
|
2013-02-01 11:21:01 +00:00
|
|
|
template<typename ForwardIterator, typename Result>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
|
|
|
dft_impl(
|
2013-02-01 11:21:01 +00:00
|
|
|
ForwardIterator first, ForwardIterator last, Result const& result,
|
2012-03-31 07:24:13 +00:00
|
|
|
typename sprout::container_traits<Result>::difference_type offset
|
2012-02-25 14:59:46 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
return sprout::sub_copy(
|
2012-03-31 07:24:13 +00:00
|
|
|
sprout::get_internal(sprout::fixed::dft(first, last, result)),
|
2012-02-25 14:59:46 +00:00
|
|
|
offset,
|
2013-02-26 01:43:27 +00:00
|
|
|
offset + sprout::fit_size(result, sprout::distance(first, last))
|
2012-02-25 14:59:46 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// dft
|
|
|
|
//
|
2013-02-01 11:21:01 +00:00
|
|
|
template<typename ForwardIterator, typename Result>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
2013-02-01 11:21:01 +00:00
|
|
|
dft(ForwardIterator first, ForwardIterator last, Result const& result) {
|
2012-03-31 07:24:13 +00:00
|
|
|
return sprout::fit::detail::dft_impl(first, last, result, sprout::internal_begin_offset(result));
|
2012-02-25 14:59:46 +00:00
|
|
|
}
|
2013-02-01 11:21:01 +00:00
|
|
|
|
|
|
|
template<typename Result, typename ForwardIterator>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
dft(ForwardIterator first, ForwardIterator last) {
|
|
|
|
return sprout::fit::dft(first, last, sprout::pit<Result>());
|
|
|
|
}
|
2012-02-25 14:59:46 +00:00
|
|
|
} // namespace fit
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-04-10 03:54:38 +00:00
|
|
|
#endif // #ifndef SPROUT_NUMERIC_DFT_FIT_DFT_HPP
|