Sprout/sprout/range/numeric/dft/fixed/spectrum.hpp

37 lines
1.2 KiB
C++
Raw Normal View History

2012-05-01 05:34:48 +00:00
#ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_SPECTRUM_HPP
#define SPROUT_RANGE_NUMERIC_DFT_FIXED_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/spectrum.hpp>
namespace sprout {
namespace range {
namespace fixed {
//
// spectrum
//
2013-02-03 16:10:26 +00:00
template<typename InputRange, typename Result>
2012-05-01 05:34:48 +00:00
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
spectrum(InputRange const& rng, Result const& result) {
return sprout::fixed::spectrum(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 InputRange>
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
2013-02-03 16:10:26 +00:00
spectrum(InputRange const& rng) {
return sprout::fixed::spectrum<Result>(sprout::begin(rng), sprout::end(rng));
}
2012-05-01 05:34:48 +00:00
} // namespace fixed
using sprout::range::fixed::spectrum;
} // namespace range
} // namespace sprout
2012-12-03 12:48:50 +00:00
#include <sprout/range/numeric/dft/fixed/amplitude_spectrum.hpp>
#include <sprout/range/numeric/dft/fixed/phase_spectrum.hpp>
2012-05-01 05:34:48 +00:00
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_SPECTRUM_HPP