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