mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-10-19 13:49:23 +00:00
add dft/sawtooth, triangle, square, phase_spectrum, ...
This commit is contained in:
parent
3b6ba46f17
commit
e4a4d17207
33 changed files with 2216 additions and 79 deletions
|
@ -4,6 +4,8 @@
|
|||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/dft/dft.hpp>
|
||||
#include <sprout/range/numeric/dft/idft.hpp>
|
||||
#include <sprout/range/numeric/dft/amplitude_spectrum.hpp>
|
||||
#include <sprout/range/numeric/dft/phase_spectrum.hpp>
|
||||
#include <sprout/range/numeric/dft/spectrum.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_HPP
|
||||
|
|
8
sprout/range/numeric/dft/amplitude_spectrum.hpp
Normal file
8
sprout/range/numeric/dft/amplitude_spectrum.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_DFT_AMPLITUDE_SPECTRUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_AMPLITUDE_SPECTRUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/dft/fixed/amplitude_spectrum.hpp>
|
||||
#include <sprout/range/numeric/dft/fit/amplitude_spectrum.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_AMPLITUDE_SPECTRUM_HPP
|
28
sprout/range/numeric/dft/fit/amplitude_spectrum.hpp
Normal file
28
sprout/range/numeric/dft/fit/amplitude_spectrum.hpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_AMPLITUDE_SPECTRUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_FIT_AMPLITUDE_SPECTRUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/numeric/dft/fit/amplitude_spectrum.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fit {
|
||||
//
|
||||
// amplitude_spectrum
|
||||
//
|
||||
template<typename Input, typename Result>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type amplitude_spectrum(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fit::amplitude_spectrum(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
} // namespace fit
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_AMPLITUDE_SPECTRUM_HPP
|
28
sprout/range/numeric/dft/fit/phase_spectrum.hpp
Normal file
28
sprout/range/numeric/dft/fit/phase_spectrum.hpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_PHASE_SPECTRUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_FIT_PHASE_SPECTRUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/fit/result_of.hpp>
|
||||
#include <sprout/numeric/dft/fit/phase_spectrum.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fit {
|
||||
//
|
||||
// phase_spectrum
|
||||
//
|
||||
template<typename Input, typename Result>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Result>::type phase_spectrum(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fit::phase_spectrum(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
} // namespace fit
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIT_PHASE_SPECTRUM_HPP
|
31
sprout/range/numeric/dft/fixed/amplitude_spectrum.hpp
Normal file
31
sprout/range/numeric/dft/fixed/amplitude_spectrum.hpp
Normal file
|
@ -0,0 +1,31 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_AMPLITUDE_SPECTRUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_FIXED_AMPLITUDE_SPECTRUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/fixed/result_of.hpp>
|
||||
#include <sprout/numeric/dft/fixed/amplitude_spectrum.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fixed {
|
||||
//
|
||||
// amplitude_spectrum
|
||||
//
|
||||
template<typename Input, typename Result>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
||||
amplitude_spectrum(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fixed::amplitude_spectrum(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::range::fixed::amplitude_spectrum;
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_AMPLITUDE_SPECTRUM_HPP
|
31
sprout/range/numeric/dft/fixed/phase_spectrum.hpp
Normal file
31
sprout/range/numeric/dft/fixed/phase_spectrum.hpp
Normal file
|
@ -0,0 +1,31 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_PHASE_SPECTRUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_FIXED_PHASE_SPECTRUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/container/traits.hpp>
|
||||
#include <sprout/container/functions.hpp>
|
||||
#include <sprout/algorithm/fixed/result_of.hpp>
|
||||
#include <sprout/numeric/dft/fixed/phase_spectrum.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace range {
|
||||
namespace fixed {
|
||||
//
|
||||
// phase_spectrum
|
||||
//
|
||||
template<typename Input, typename Result>
|
||||
inline SPROUT_CONSTEXPR typename sprout::fixed::result_of::algorithm<Result>::type
|
||||
phase_spectrum(
|
||||
Input const& input,
|
||||
Result const& result
|
||||
)
|
||||
{
|
||||
return sprout::fixed::phase_spectrum(sprout::begin(input), sprout::end(input), result);
|
||||
}
|
||||
} // namespace fixed
|
||||
|
||||
using sprout::range::fixed::phase_spectrum;
|
||||
} // namespace range
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_FIXED_PHASE_SPECTRUM_HPP
|
8
sprout/range/numeric/dft/phase_spectrum.hpp
Normal file
8
sprout/range/numeric/dft/phase_spectrum.hpp
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef SPROUT_RANGE_NUMERIC_DFT_PHASE_SPECTRUM_HPP
|
||||
#define SPROUT_RANGE_NUMERIC_DFT_PHASE_SPECTRUM_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/range/numeric/dft/fixed/phase_spectrum.hpp>
|
||||
#include <sprout/range/numeric/dft/fit/phase_spectrum.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_RANGE_NUMERIC_DFT_PHASE_SPECTRUM_HPP
|
Loading…
Add table
Add a link
Reference in a new issue