eDSP
0.0.1
A cross-platform DSP library written in C++.
|
#include <edsp/meta/iterator.hpp>
#include <algorithm>
Go to the source code of this file.
Namespaces | |
edsp | |
edsp::statistics | |
Functions | |
template<typename ForwardIt > | |
constexpr auto | edsp::statistics::peak (ForwardIt first, ForwardIt last) -> std::pair< typename meta::diff_type_t< ForwardIt >, typename meta::value_type_t< ForwardIt >> |
Computes the peak value of the range [first, last) More... | |
template<typename ForwardIt > | |
constexpr auto | edsp::statistics::peakabs (ForwardIt first, ForwardIt last) -> std::pair< typename meta::diff_type_t< ForwardIt >, typename meta::value_type_t< ForwardIt >> |
Computes the absolute peak value of the range [first, last) More... | |