Changeset 1069 for trunk/yat/statistics
- Timestamp:
- Feb 11, 2008, 10:57:24 PM (14 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/EuclideanDistance.h
r1051 r1069 35 35 namespace yat { 36 36 namespace statistics { 37 37 38 /// 39 /// @brief Calculates the Euclidean distance between two points stored in 1-dimensional containers. Implements the concept \ref concept_distance. 40 /// 41 /// 38 42 struct EuclideanDistance 39 { 43 { 44 /// 45 /// @brief Calculates the Euclidean distance between two ranges. 46 /// 40 47 template <typename Iter1, typename Iter2> 41 48 double operator() -
trunk/yat/statistics/PearsonDistance.h
r1051 r1069 34 34 namespace statistics { 35 35 36 /// 37 /// @brief Calculates the Pearson correlation distance between two points stored in 1-dimensional containers. Implements the concept \ref concept_distance. 38 /// 39 /// 36 40 struct PearsonDistance 37 41 { 42 /// 43 /// @brief Calculates the Pearson correlation distance between two ranges. 44 /// 38 45 template <typename Iter1, typename Iter2> 39 46 double operator()
Note: See TracChangeset
for help on using the changeset viewer.