ProteoWizard
|
Namespaces | |
base | |
filter | |
ms | |
resample | |
stats | |
utils | |
Functions | |
template<typename TIterator , typename T > | |
void | cumsum (TIterator beg, TIterator end, std::vector< T > &res) |
template<typename TIterator > | |
TIterator | cumsum (TIterator beg, TIterator end) |
template<typename T > | |
void | cumprod (std::vector< T > &x, std::vector< T > &res) |
Returns a vector whose elements are the cumulative products of the elements of the argument. More... | |
template<typename T > | |
void | cummax (std::vector< T > &x, std::vector< T > &res) |
Returns a vector whose elements are the cumulative maximum of the elements of the argument. More... | |
template<typename T > | |
void | cummin (std::vector< T > &x, std::vector< T > &res) |
Returns a vector whose elements are the cumulative sums, products, minima or maxima of the elements of the argument. More... | |
void ralab::base::cumsum | ( | TIterator | beg, |
TIterator | end, | ||
std::vector< T > & | res | ||
) |
CUMSUM Returns a vector whose elements are the cumulative sums, products, minima or maxima of the elements of the argument.
[in] | beg | [in] vector of values of type T |
[out] | res | [out] cumulative sum |
Definition at line 40 of file cumsum.hpp.
TIterator ralab::base::cumsum | ( | TIterator | beg, |
TIterator | end | ||
) |
[in] | beg | [in] vector of values of type T |
Definition at line 63 of file cumsum.hpp.
void ralab::base::cumprod | ( | std::vector< T > & | x, |
std::vector< T > & | res | ||
) |
Returns a vector whose elements are the cumulative products of the elements of the argument.
[in] | x | [in] |
res | cumulative product |
Definition at line 80 of file cumsum.hpp.
References x.
void ralab::base::cummax | ( | std::vector< T > & | x, |
std::vector< T > & | res | ||
) |
Returns a vector whose elements are the cumulative maximum of the elements of the argument.
[in] | x | [in] vector of type T |
[out] | res | [out] cumulative maximum |
Definition at line 97 of file cumsum.hpp.
References x.
void ralab::base::cummin | ( | std::vector< T > & | x, |
std::vector< T > & | res | ||
) |
Returns a vector whose elements are the cumulative sums, products, minima or maxima of the elements of the argument.
[in] | x | [in] vector of type T |
[in] | res | [in] cumulative minimum |
Definition at line 115 of file cumsum.hpp.
References x.