2012-05-01 05:34:48 +00:00
|
|
|
#ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_DFT_HPP
|
|
|
|
#define SPROUT_RANGE_NUMERIC_DFT_FIT_DFT_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/dft.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace range {
|
|
|
|
namespace fit {
|
|
|
|
//
|
|
|
|
// dft
|
|
|
|
//
|
|
|
|
template<typename Input, typename Result>
|
2012-10-06 04:53:07 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
|
|
|
dft(Input const& input, Result const& result) {
|
2012-05-01 05:34:48 +00:00
|
|
|
return sprout::fit::dft(sprout::begin(input), sprout::end(input), result);
|
|
|
|
}
|
2013-02-01 11:21:01 +00:00
|
|
|
|
|
|
|
template<typename Result, typename Input>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
|
|
|
|
dft(Input const& input) {
|
|
|
|
return sprout::fit::dft<Result>(sprout::begin(input), sprout::end(input));
|
|
|
|
}
|
2012-05-01 05:34:48 +00:00
|
|
|
} // namespace fit
|
|
|
|
} // namespace range
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_DFT_HPP
|