eDSP  0.0.1
A cross-platform DSP library written in C++.
Namespaces | Functions
clipper.hpp File Reference
#include <algorithm>
#include <edsp/meta/iterator.hpp>

Go to the source code of this file.

Namespaces

 edsp
 
 edsp::algorithm
 

Functions

template<typename InputItr , typename OutputIt , typename Numeric >
constexpr void edsp::algorithm::clipper (InputItr first, InputItr last, OutputIt d_first, Numeric min, Numeric max)
 Limits the values of the elements in the range [first, last) once it exceeds a threshold [min, max], and stores the result in another range, beginning at d_first. More...