Sprout/sprout/numeric/dft/fit/spectrum.hpp

37 lines
1.4 KiB
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_NUMERIC_DFT_FIT_SPECTRUM_HPP
#define SPROUT_NUMERIC_DFT_FIT_SPECTRUM_HPP
#include <sprout/config.hpp>
#include <sprout/algorithm/fit/result_of.hpp>
#include <sprout/numeric/dft/fit/amplitude_spectrum.hpp>
namespace sprout {
namespace fit {
//
// spectrum
//
template<typename InputIterator, typename Result>
2012-10-06 04:53:07 +00:00
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
spectrum(InputIterator first, InputIterator last, Result const& result) {
return sprout::fit::amplitude_spectrum(first, last, result);
}
template<typename Result, typename InputIterator>
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type
spectrum(InputIterator first, InputIterator last) {
return sprout::fit::amplitude_spectrum<Result>(first, last);
}
} // namespace fit
} // namespace sprout
2012-07-17 08:38:45 +00:00
#include <sprout/numeric/dft/fit/phase_spectrum.hpp>
#endif // #ifndef SPROUT_NUMERIC_DFT_FIT_SPECTRUM_HPP