mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
add c++14 fft/dft range algorithms
This commit is contained in:
parent
aaf31f2ab8
commit
fe255a5e74
73 changed files with 877 additions and 17 deletions
35
sprout/range/numeric/dft/cxx14/spectrum.hpp
Normal file
35
sprout/range/numeric/dft/cxx14/spectrum.hpp
Normal file
|
@ -0,0 +1,35 @@
|
|||
/*=============================================================================
|
||||
Copyright (c) 2011-2014 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_RANGE_NUMERIC_DFT_CXX14_SPECTRUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_CXX14_SPECTRUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/iterator/type_traits/is_iterator_of.hpp>
|
||||
#include <sprout/type_traits/enabler_if.hpp>
|
||||
#include <sprout/numeric/dft/cxx14/spectrum.hpp>
|
||||
#include <sprout/range/numeric/dft/cxx14/amplitude_spectrum.hpp>
|
||||
#include <sprout/range/numeric/dft/cxx14/phase_spectrum.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
//
|
||||
// spectrum
|
||||
//
|
||||
template<
|
||||
typename InputRange, typename OutputIterator,
|
||||
typename sprout::enabler_if<sprout::is_iterator_outputable<OutputIterator>::value>::type = sprout::enabler
|
||||
>
|
||||
inline SPROUT_CXX14_CONSTEXPR OutputIterator
|
||||
spectrum(InputRange const& rng, OutputIterator result) {
|
||||
return sprout::spectrum(sprout::begin(rng), sprout::end(rng), result);
|
||||
}
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_CXX14_SPECTRUM_HPP
|
Loading…
Add table
Add a link
Reference in a new issue