Changeset 1187
- Timestamp:
- Feb 28, 2008, 10:06:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/AveragerPair.h
r1186 r1187 71 71 72 72 /** 73 \brief Concordence correlation coefficient. 74 73 75 \f$ \frac{\sum_i (x_i-m_x)(y_i-m_y)}{\sum_i 74 76 (x_i-m_x)^2+\sum_i (y_i-m_y)^2 + n(m_x-m_y)^2} \f$ 75 77 76 @return Concordence correlation coefficient.77 78 */ 78 79 double ccc(void) const; 79 80 80 / //81 ///\f$ \frac{\sum_i (x_i-m_x)(y_i-m_y)}{\sqrt{\sum_i82 ///(x_i-m_x)^2\sum_i (y_i-m_y)^2}} \f$83 ///84 /// @return %Pearson correlation coefficient.85 ///81 /** 82 \f$ \frac{\sum_i (x_i-m_x)(y_i-m_y)}{\sqrt{\sum_i 83 (x_i-m_x)^2\sum_i (y_i-m_y)^2}} \f$ 84 85 \return %Pearson correlation coefficient. 86 */ 86 87 double correlation(void) const; 87 88 … … 100 101 double mean_xy(void) const; 101 102 102 / //103 /// @return Average squared deviation between x and y \f$104 ///\frac{1}{N} \sum (x-y)^2 \f$105 ///103 /** 104 \return Average squared deviation between x and y \f$ 105 \frac{1}{N} \sum (x-y)^2 \f$ 106 */ 106 107 double msd(void) const; 107 108 … … 121 122 double sum_xy(void) const; 122 123 123 / //124 /// @return Sum of squared deviation between x and y \f$125 ///\sum (x-y)^2 \f$126 ///124 /** 125 \return Sum of squared deviation between x and y \f$ 126 \sum (x-y)^2 \f$ 127 */ 127 128 double sum_squared_deviation(void) const; 128 129
Note: See TracChangeset
for help on using the changeset viewer.