Changeset 1186


Ignore:
Timestamp:
Feb 28, 2008, 10:00:32 PM (16 years ago)
Author:
Peter
Message:

minor docs issues fixed

Location:
trunk/yat
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/classifier/SubsetGenerator.h

    r1168 r1186  
    103103    /// @return training features
    104104    ///
    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;
    107106
    108107    ///
    109108    /// @return training index
    110109    ///
    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;
    113111
    114112    ///
  • trunk/yat/statistics/Averager.h

    r1122 r1186  
    7979
    8080    ///
    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$
    8282    ///
    8383    double mean(void) const;
  • trunk/yat/statistics/AveragerPair.h

    r1122 r1186  
    8282    /// (x_i-m_x)^2\sum_i (y_i-m_y)^2}} \f$
    8383    ///
    84     /// @return Pearson correlation coefficient.
     84    /// @return %Pearson correlation coefficient.
    8585    ///
    8686    double correlation(void) const;
  • trunk/yat/statistics/AveragerPairWeighted.h

    r1185 r1186  
    7171
    7272    ///
    73     /// @brief Pearson correlation coefficient.
     73    /// @brief %Pearson correlation coefficient.
    7474    ///
    7575    /// @return \f$ \frac{\sum w_xw_y (x-m_x)(y-m_y)}{\sqrt{\sum
  • trunk/yat/utility/Exception.h

    r1178 r1186  
    4141  {
    4242  public:
     43    /**
     44       \brief Constructor
     45
     46       \param message message to be displayed using function what().
     47     */
    4348    inline cmd_error(std::string message)
    4449      : std::runtime_error(message) {}
Note: See TracChangeset for help on using the changeset viewer.