- Timestamp:
- Feb 28, 2008, 10:00:32 PM (15 years ago)
- Location:
- trunk/yat
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/SubsetGenerator.h
r1168 r1186 103 103 /// @return training features 104 104 /// 105 const utility::Index& 106 training_features(std::vector<size_t>::size_type i) const; 105 const utility::Index& training_features(size_t i) const; 107 106 108 107 /// 109 108 /// @return training index 110 109 /// 111 const utility::Index& 112 training_index(std::vector<size_t>::size_type i) const; 110 const utility::Index& training_index(size_t i) const; 113 111 114 112 /// -
trunk/yat/statistics/Averager.h
r1122 r1186 79 79 80 80 /// 81 /// @return Mean of presented data, \f$ \frac{1}{n}\sum x_i \f$81 /// @return %Mean of presented data, \f$ \frac{1}{n}\sum x_i \f$ 82 82 /// 83 83 double mean(void) const; -
trunk/yat/statistics/AveragerPair.h
r1122 r1186 82 82 /// (x_i-m_x)^2\sum_i (y_i-m_y)^2}} \f$ 83 83 /// 84 /// @return Pearson correlation coefficient.84 /// @return %Pearson correlation coefficient. 85 85 /// 86 86 double correlation(void) const; -
trunk/yat/statistics/AveragerPairWeighted.h
r1185 r1186 71 71 72 72 /// 73 /// @brief Pearson correlation coefficient.73 /// @brief %Pearson correlation coefficient. 74 74 /// 75 75 /// @return \f$ \frac{\sum w_xw_y (x-m_x)(y-m_y)}{\sqrt{\sum -
trunk/yat/utility/Exception.h
r1178 r1186 41 41 { 42 42 public: 43 /** 44 \brief Constructor 45 46 \param message message to be displayed using function what(). 47 */ 43 48 inline cmd_error(std::string message) 44 49 : std::runtime_error(message) {}
Note: See TracChangeset
for help on using the changeset viewer.