mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
28 lines
753 B
C++
28 lines
753 B
C++
#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>
|
|
#include <sprout/numeric/dft/fixed/amplitude_spectrum.hpp>
|
|
|
|
namespace sprout {
|
|
namespace fixed {
|
|
//
|
|
// spectrum
|
|
//
|
|
template<typename InputIterator, typename Result>
|
|
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
|
spectrum(
|
|
InputIterator first,
|
|
InputIterator last,
|
|
Result const& result
|
|
)
|
|
{
|
|
return sprout::fixed::amplitude_spectrum(first, last, result);
|
|
}
|
|
} // namespace fixed
|
|
|
|
using sprout::fixed::spectrum;
|
|
} // namespace sprout
|
|
|
|
#endif // #ifndef SPROUT_NUMERIC_DFT_FIXED_SPECTRUM_HPP
|