Sprout/sprout/range/numeric/dft/fit/idft.hpp

32 lines
1 KiB
C++
Raw Normal View History

2012-05-01 05:34:48 +00:00
#ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_IDFT_HPP
#define SPROUT_RANGE_NUMERIC_DFT_FIT_IDFT_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/algorithm/fit/result_of.hpp>
#include <sprout/numeric/dft/fit/idft.hpp>
namespace sprout {
namespace range {
namespace fit {
//
// idft
//
2013-02-03 16:10:26 +00:00
template<typename ForwardRange, typename Result>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
idft(ForwardRange const& rng, Result const& result) {
return sprout::fit::idft(sprout::begin(rng), sprout::end(rng), result);
2012-05-01 05:34:48 +00:00
}
2013-02-03 16:10:26 +00:00
template<typename Result, typename ForwardRange>
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
idft(ForwardRange const& rng) {
return sprout::fit::idft<Result>(sprout::begin(rng), sprout::end(rng));
}
2012-05-01 05:34:48 +00:00
} // namespace fit
} // namespace range
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_IDFT_HPP