|
| struct | Buckets |
| |
| class | Circle |
| |
| class | Combination |
| | Combination of a unique item map Binomialcoefficient (n k) More...
|
| |
| class | DiscreteFilter |
| |
| struct | Histogram |
| | Histogram class, that splits an interval into n regular bins, and counts how often a value is added to a bin. More...
|
| |
| class | IntegerPartitioning |
| | Computer integer partitions. More...
|
| |
| class | LimitedCombination |
| | Compute combinatorics on a given set of limited but typed resources, e.g. for available resource A:2, B:1, C:1 the following combinations are possible: max size 1: A,B,C max size 2: AA, AB, AC, BC max size 3: AAB, AAC, ABC. More...
|
| |
| class | Permutation |
| | Create permutation on a list of given types. More...
|
| |
| class | PlaneFitting |
| |
| class | SavitzkyGolayFilter |
| |
| class | SeriesStats |
| |
| struct | Square |
| |
| struct | Square< Eigen::Matrix< _Scalar, _Rows, 1, _Options > > |
| |
| class | Stats |
| |
| class | Twiddle |
| | Twiddle algorithm – modifications applied only to simplify integration. More...
|
| |
| struct | Zero |
| |
| struct | Zero< Eigen::Matrix< _Scalar, _Rows, _Cols, _Options > > |
| |
|
| template<typename TIter1 , typename TIter2 , typename TResult > |
| bool | fitPolynom (int degree, TIter1 start_iter_x, TIter1 end_iter_x, TIter2 start_iter_y, TIter2 end_iter_y, std::vector< TResult > &result, double &chisq) |
| |
| template<typename TIter , typename TResult > |
| bool | fitPolynom (int degree, TIter start_iter, TIter end_iter, std::vector< TResult > &result, double &chisq) |
| |
| template<typename TIter1 , typename TIter2 > |
| void | derivePolynom (TIter1 start_coefficient, TIter2 end_coefficient, TIter2 start_result) |
| |
| void | derivePolynom (std::vector< double > &coefficients, std::vector< double > &result) |
| |
| void | calcPolyRoots (const std::vector< double > &coefficients, std::vector< double > &roots) |
| |
| double | calcPolyVal (const std::vector< double > &coefficients, double position) |
| |
| std::ostream & | operator<< (std::ostream &os, const IntegerPartition &list) |
| |
| std::ostream & | operator<< (std::ostream &os, const std::vector< IntegerPartition > &list) |
| |
| template<typename TIter > |
| void | matchTemplate1D (TIter start, TIter end, TIter template_start, TIter template_end, int &pos, double &best_match, bool remove_offset=true) |
| |
| template<typename T > |
| std::vector< T > | joinVectors (const std::vector< T > &v1, const std::vector< T > &v2, int pos, const T &default_value) |
| |
| template<class T > |
| T | min_el (T a, T b) |
| |
| template<class T > |
| T | max_el (T a, T b) |
| |
| template<class _Scalar , int _Rows, int _Options> |
| Eigen::Matrix< _Scalar, _Rows, 1, _Options > | min_el (Eigen::Matrix< _Scalar, _Rows, 1, _Options > const &a, Eigen::Matrix< _Scalar, _Rows, 1, _Options > const &b) |
| |
| template<class _Scalar , int _Rows, int _Options> |
| Eigen::Matrix< _Scalar, _Rows, 1, _Options > | max_el (Eigen::Matrix< _Scalar, _Rows, 1, _Options > const &a, Eigen::Matrix< _Scalar, _Rows, 1, _Options > const &b) |
| |