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
39
sprout/range/numeric/dft/cxx14/square.hpp
Normal file
39
sprout/range/numeric/dft/cxx14/square.hpp
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*=============================================================================
|
||||
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_SQUARE_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_CXX14_SQUARE_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
#include <sprout/numeric/dft/cxx14/square.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
//
|
||||
// square
|
||||
//
|
||||
template<typename ForwardRange>
|
||||
inline SPROUT_CXX14_CONSTEXPR void
|
||||
square(
|
||||
ForwardRange&& rng,
|
||||
typename sprout::container_traits<ForwardRange>::value_type const& frequency = 1,
|
||||
typename sprout::container_traits<ForwardRange>::value_type const& amplitude = 1,
|
||||
typename sprout::container_traits<ForwardRange>::value_type const& phase = 0
|
||||
)
|
||||
{
|
||||
sprout::square(
|
||||
sprout::begin(SPROUT_FORWARD(ForwardRange, rng)), sprout::end(SPROUT_FORWARD(ForwardRange, rng)),
|
||||
frequency, amplitude, phase
|
||||
);
|
||||
}
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_CXX14_SQUARE_HPP
|
Loading…
Add table
Add a link
Reference in a new issue