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)
|
|
|
|
=============================================================================*/
|
2012-04-30 01:55:33 +00:00
|
|
|
#ifndef SPROUT_NUMERIC_DFT_FIXED_SPECTRUM_HPP
|
|
|
|
#define SPROUT_NUMERIC_DFT_FIXED_SPECTRUM_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/algorithm/fixed/result_of.hpp>
|
2012-07-08 12:05:24 +00:00
|
|
|
#include <sprout/numeric/dft/fixed/amplitude_spectrum.hpp>
|
2012-04-30 01:55:33 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace fixed {
|
|
|
|
//
|
|
|
|
// spectrum
|
|
|
|
//
|
|
|
|
template<typename InputIterator, typename Result>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
2012-10-06 04:53:07 +00:00
|
|
|
spectrum(InputIterator first, InputIterator last, Result const& result) {
|
2012-07-08 12:05:24 +00:00
|
|
|
return sprout::fixed::amplitude_spectrum(first, last, result);
|
2012-04-30 01:55:33 +00:00
|
|
|
}
|
2013-02-01 11:21:01 +00:00
|
|
|
|
|
|
|
template<typename Result, typename InputIterator>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
|
|
spectrum(InputIterator first, InputIterator last) {
|
|
|
|
return sprout::fixed::amplitude_spectrum<Result>(first, last);
|
|
|
|
}
|
2012-04-30 01:55:33 +00:00
|
|
|
} // namespace fixed
|
|
|
|
|
|
|
|
using sprout::fixed::spectrum;
|
|
|
|
} // namespace sprout
|
|
|
|
|
2012-07-17 08:38:45 +00:00
|
|
|
#include <sprout/numeric/dft/fixed/phase_spectrum.hpp>
|
|
|
|
|
2012-04-30 01:55:33 +00:00
|
|
|
#endif // #ifndef SPROUT_NUMERIC_DFT_FIXED_SPECTRUM_HPP
|