eDSP
0.0.1
A cross-platform DSP library written in C++.
|
#include <algorithm>
#include <edsp/statistics/rms.hpp>
#include <edsp/statistics/max.hpp>
#include <edsp/meta/iterator.hpp>
Go to the source code of this file.
Namespaces | |
edsp | |
edsp::algorithm | |
Functions | |
template<typename InputIt , typename OutputIt > | |
constexpr void | edsp::algorithm::normalize (InputIt first, InputIt last, OutputIt d_first) |
Normalizes the elements in the range [first, last) and stores the result in another range, beginning at d_first. More... | |
template<typename InputIt , typename OutputIt > | |
constexpr void | edsp::algorithm::normalize_rms (InputIt first, InputIt last, OutputIt d_first) |
Normalizes the elements in the range [first, last) and stores the result in another range, beginning at d_first. More... | |