Sprout/sprout/range/numeric/dft/fixed/amplitude_spectrum.hpp
2013-02-04 01:10:26 +09:00

33 lines
1.2 KiB
C++

#ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_AMPLITUDE_SPECTRUM_HPP
#define SPROUT_RANGE_NUMERIC_DFT_FIXED_AMPLITUDE_SPECTRUM_HPP
#include <sprout/config.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/algorithm/fixed/result_of.hpp>
#include <sprout/numeric/dft/fixed/amplitude_spectrum.hpp>
namespace sprout {
namespace range {
namespace fixed {
//
// amplitude_spectrum
//
template<typename InputRange, typename Result>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
amplitude_spectrum(InputRange const& rng, Result const& result) {
return sprout::fixed::amplitude_spectrum(sprout::begin(rng), sprout::end(rng), result);
}
template<typename Result, typename InputRange>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
amplitude_spectrum(InputRange const& rng) {
return sprout::fixed::amplitude_spectrum<Result>(sprout::begin(rng), sprout::end(rng));
}
} // namespace fixed
using sprout::range::fixed::amplitude_spectrum;
} // namespace range
} // namespace sprout
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_AMPLITUDE_SPECTRUM_HPP