Changeset 1069
- Timestamp:
- Feb 11, 2008, 10:57:24 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/doxygen.config.in
r1000 r1069 142 142 143 143 FULL_PATH_NAMES = YES 144 144 b 145 145 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 146 146 # can be used to strip a user defined part of the path. Stripping is … … 350 350 # with spaces. 351 351 352 INPUT = first_page.doxygen namespaces.doxygen ../yat352 INPUT = first_page.doxygen namespaces.doxygen concepts.doxygen ../yat 353 353 354 354 # If the value of the INPUT tag contains directories, you can use the -
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.