Changeset 1031 for trunk/yat/statistics/pearson_distance.h
- Timestamp:
- Feb 4, 2008, 4:44:44 PM (15 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/pearson_distance.h
r1030 r1031 1 #ifndef theplu_yat_statistics_pearson_ vector_distance_h2 #define theplu_yat_statistics_pearson_ vector_distance_h1 #ifndef theplu_yat_statistics_pearson_distance_h 2 #define theplu_yat_statistics_pearson_distance_h 3 3 4 4 // $Id$ … … 25 25 */ 26 26 27 #include " vector_distance.h"27 #include "distance.h" 28 28 29 29 #include "AveragerPair.h" … … 40 40 /// the Pearson distance measure. 41 41 /// 42 struct pearson_ vector_distance_tag43 : public vector_distance_tag42 struct pearson_distance_tag 43 : public distance_tag 44 44 { 45 45 /// \brief tag for pearson distance 46 typedef pearson_ vector_distance_tag distance;46 typedef pearson_distance_tag distance; 47 47 }; 48 48 … … 54 54 /// 55 55 template <class Iter> 56 double vector_distance(Iter beg1,Iter end1, Iter beg2,57 const pearson_ vector_distance_tag& disttype,56 double distance(Iter beg1,Iter end1, Iter beg2, 57 const pearson_distance_tag& disttype, 58 58 utility::unweighted_type) 59 59 { … … 69 69 /// 70 70 template <class Iter> 71 double vector_distance(Iter beg1,Iter end1, Iter beg2,72 const pearson_ vector_distance_tag& disttype,71 double distance(Iter beg1,Iter end1, Iter beg2, 72 const pearson_distance_tag& disttype, 73 73 utility::weighted_type) 74 74 {
Note: See TracChangeset
for help on using the changeset viewer.