Changeset 1069


Ignore:
Timestamp:
Feb 11, 2008, 10:57:24 PM (15 years ago)
Author:
Markus Ringnér
Message:

First few steps on #323

Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/doxygen.config.in

    r1000 r1069  
    142142
    143143FULL_PATH_NAMES        = YES
    144 
     144b
    145145# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
    146146# can be used to strip a user defined part of the path. Stripping is
     
    350350# with spaces.
    351351
    352 INPUT                  = first_page.doxygen namespaces.doxygen ../yat
     352INPUT                  = first_page.doxygen namespaces.doxygen concepts.doxygen ../yat
    353353
    354354# If the value of the INPUT tag contains directories, you can use the
  • trunk/yat/statistics/EuclideanDistance.h

    r1051 r1069  
    3535namespace yat {
    3636namespace 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  ///
    3842  struct EuclideanDistance
    39   {
     43  {   
     44    ///
     45    /// @brief Calculates the Euclidean distance between two ranges.
     46    ///
    4047    template <typename Iter1, typename Iter2>
    4148    double operator()
  • trunk/yat/statistics/PearsonDistance.h

    r1051 r1069  
    3434namespace statistics {
    3535
     36  ///
     37  /// @brief Calculates the Pearson correlation distance between two points stored in 1-dimensional containers. Implements the concept \ref concept_distance.
     38  ///
     39  ///
    3640  struct PearsonDistance
    3741  {
     42    ///
     43    /// @brief Calculates the Pearson correlation distance between two ranges.
     44    ///
    3845    template <typename Iter1, typename Iter2>
    3946    double operator()
Note: See TracChangeset for help on using the changeset viewer.