#ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_IDFT_HPP #define SPROUT_RANGE_NUMERIC_DFT_FIXED_IDFT_HPP #include #include #include #include #include namespace sprout { namespace range { namespace fixed { // // idft // template inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm::type idft(Input const& input, Result const& result) { return sprout::fixed::idft(sprout::begin(input), sprout::end(input), result); } } // namespace fixed using sprout::range::fixed::idft; } // namespace range } // namespace sprout #endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_IDFT_HPP