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