mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-14 15:04:09 +00:00
add compost dft, spectrum, etc
This commit is contained in:
parent
6b08a81d3e
commit
24d2a229f3
45 changed files with 1490 additions and 61 deletions
56
sprout/compost/formats/as_complex.hpp
Normal file
56
sprout/compost/formats/as_complex.hpp
Normal file
|
@ -0,0 +1,56 @@
|
|||
#ifndef SPROUT_COMPOST_FORMATS_AS_COMPLEX_HPP
|
||||
#define SPROUT_COMPOST_FORMATS_AS_COMPLEX_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/complex.hpp>
|
||||
#include <sprout/utility/forward.hpp>
|
||||
#include <sprout/range/adaptor/transformed.hpp>
|
||||
|
||||
namespace sprout {
|
||||
namespace compost {
|
||||
//
|
||||
// to_complex_value
|
||||
//
|
||||
struct to_complex_value {
|
||||
public:
|
||||
template<typename FloatType>
|
||||
SPROUT_CONSTEXPR sprout::complex<FloatType> operator()(FloatType const& x) const {
|
||||
return sprout::complex<FloatType>(x);
|
||||
}
|
||||
};
|
||||
|
||||
namespace formats {
|
||||
//
|
||||
// as_complex_forwarder
|
||||
//
|
||||
class as_complex_forwarder {};
|
||||
|
||||
//
|
||||
// as_complex
|
||||
//
|
||||
namespace {
|
||||
SPROUT_STATIC_CONSTEXPR sprout::compost::formats::as_complex_forwarder as_complex{};
|
||||
} // anonymous-namespace
|
||||
|
||||
//
|
||||
// operator|
|
||||
//
|
||||
template<typename Range>
|
||||
inline SPROUT_CONSTEXPR auto
|
||||
operator|(Range&& lhs, sprout::compost::formats::as_complex_forwarder const& rhs)
|
||||
-> decltype(
|
||||
sprout::forward<Range>(lhs)
|
||||
| sprout::adaptors::transformed(sprout::compost::to_complex_value())
|
||||
)
|
||||
{
|
||||
return sprout::forward<Range>(lhs)
|
||||
| sprout::adaptors::transformed(sprout::compost::to_complex_value())
|
||||
;
|
||||
}
|
||||
} // namespace formats
|
||||
|
||||
using sprout::compost::formats::as_complex;
|
||||
} // namespace compost
|
||||
} // namespace sprout
|
||||
|
||||
#endif // #ifndef SPROUT_COMPOST_FORMATS_AS_COMPLEX_HPP
|
Loading…
Add table
Add a link
Reference in a new issue