Sprout/sprout/numeric/dft/cxx14/sinusoid.hpp

41 lines
1.5 KiB
C++
Raw Normal View History

/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 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_CXX14_SINUSOID_HPP
#define SPROUT_NUMERIC_DFT_CXX14_SINUSOID_HPP
#include <iterator>
#include <sprout/config.hpp>
#include <sprout/iterator/distance.hpp>
#include <sprout/numeric/dft/detail/sinusoid.hpp>
namespace sprout {
//
// sinusoid
//
template<typename ForwardIterator>
inline SPROUT_CXX14_CONSTEXPR void
sinusoid(
ForwardIterator first, ForwardIterator last,
typename std::iterator_traits<ForwardIterator>::value_type const& frequency = 1,
typename std::iterator_traits<ForwardIterator>::value_type const& amplitude = 1,
typename std::iterator_traits<ForwardIterator>::value_type const& phase = 0
)
{
typedef typename std::iterator_traits<ForwardIterator>::value_type value_type;
typedef typename std::iterator_traits<ForwardIterator>::difference_type difference_type;
value_type const d = sprout::detail::sinusoid_value_d(frequency, sprout::distance(first, last));
difference_type i = 0;
while (first != last) {
*first++ = sprout::detail::sinusoid_value(amplitude, phase, d, i);
++i;
}
}
} // namespace sprout
#endif // #ifndef SPROUT_NUMERIC_DFT_CXX14_SINUSOID_HPP