Changeset 1886


Ignore:
Timestamp:
Mar 31, 2009, 7:02:39 PM (15 years ago)
Author:
Peter
Message:

refs #512. added relates tag in namespace statistics.

Location:
trunk/yat/statistics
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/statistics/Averager.h

    r1487 r1886  
    88  Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér
    99  Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
     10  Copyright (C) 2009 Peter Johansson
    1011
    1112  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    183184  /**
    184185     \brief adding a range of values to Averager \a a
     186
     187     \relates Averager
    185188   */
    186189  template <typename Iter>
  • trunk/yat/statistics/AveragerPair.h

    r1487 r1886  
    88  Copyright (C) 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér
    99  Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
     10  Copyright (C) 2009 Peter Johansson
    1011
    1112  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    160161  /**
    161162     \brief adding data from two ranges to AveragerPair \a ap
     163
     164     \relates AveragerPair
    162165   */
    163166  template <class Iter1, class Iter2>
  • trunk/yat/statistics/AveragerPairWeighted.h

    r1797 r1886  
    88  Copyright (C) 2006, 2007 Jari Häkkinen, Peter Johansson, Markus Ringnér
    99  Copyright (C) 2008 Jari Häkkinen, Peter Johansson
     10  Copyright (C) 2009 Peter Johansson
    1011
    1112  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    138139  /**
    139140     \brief adding a ranges of values to AveragerPairWeighted \a ap
     141
     142     \relates AveragerPairWeighted
    140143   */
    141144  template <class Iter1, class Iter2>
     
    153156  /**
    154157     \brief adding four ranges of values to AveragerPairWeighted \a ap
     158
     159     \relates AveragerPairWeighted
    155160   */
    156161  template <class Iter1, class Iter2, class Iter3, class Iter4>
  • trunk/yat/statistics/AveragerWeighted.h

    r1797 r1886  
    88  Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér
    99  Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
     10  Copyright (C) 2009 Peter Johansson
    1011
    1112  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    211212
    212213     If iterator is non-weighted unitary weights are used.
     214
     215     \relates AveragerWeighted
    213216   */
    214217  template <typename Iter>
     
    227230
    228231     Requirement: Iter1 and Iter2 are unweighted iterators.
     232
     233     \relates AveragerWeighted
    229234   */
    230235  template <typename Iter1, typename Iter2>
  • trunk/yat/statistics/Histogram.h

    r1797 r1886  
    192192  /**
    193193     Add a range [first, last) of values to Histogram.
     194
     195     \relates Histogram
    194196   */
    195197  template<typename ForwardIterator>
     
    204206  }
    205207
    206 ///
    207 /// The Histogram output operator
    208 ///
    209 std::ostream& operator<<(std::ostream& s,const Histogram&);
     208  /**
     209     The Histogram output operator
     210     
     211     \relates Histogram
     212  */
     213  std::ostream& operator<<(std::ostream& s,const Histogram&);
    210214
    211215}}} // of namespace statistics, yat, and theplu
  • trunk/yat/statistics/KolmogorovSmirnov.h

    r1874 r1886  
    190190  /**
    191191     \brief output operator
     192
     193     \relates KolmogorovSmirnov
    192194   */
    193195  std::ostream& operator<<(std::ostream&, const KolmogorovSmirnov&);
  • trunk/yat/statistics/PearsonCorrelation.h

    r1797 r1886  
    7272
    7373       @return one-sided p-value
     74
     75       \relates PearsonCorrelation
    7476    */
    7577    double p_value_one_sided() const;
  • trunk/yat/statistics/Smoother.h

    r1797 r1886  
    66/*
    77  Copyright (C) 2008 Jari Häkkinen, Peter Johansson
     8  Copyright (C) 2009 Peter Johansson
    89
    910  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    9495  /**
    9596     Add a range [first, last) of values to Smoother.
     97
     98     \relates Smoother
    9699   */
    97100  template<typename ForwardIterator>
     
    108111  /**
    109112     The Smoother output operator
     113
     114     \relates Smoother
    110115  */
    111116  std::ostream& operator<<(std::ostream& s,const Smoother&);
Note: See TracChangeset for help on using the changeset viewer.