Changeset 1886
- Timestamp:
- Mar 31, 2009, 7:02:39 PM (15 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/Averager.h
r1487 r1886 8 8 Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér 9 9 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 10 Copyright (C) 2009 Peter Johansson 10 11 11 12 This file is part of the yat library, http://dev.thep.lu.se/yat … … 183 184 /** 184 185 \brief adding a range of values to Averager \a a 186 187 \relates Averager 185 188 */ 186 189 template <typename Iter> -
trunk/yat/statistics/AveragerPair.h
r1487 r1886 8 8 Copyright (C) 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér 9 9 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 10 Copyright (C) 2009 Peter Johansson 10 11 11 12 This file is part of the yat library, http://dev.thep.lu.se/yat … … 160 161 /** 161 162 \brief adding data from two ranges to AveragerPair \a ap 163 164 \relates AveragerPair 162 165 */ 163 166 template <class Iter1, class Iter2> -
trunk/yat/statistics/AveragerPairWeighted.h
r1797 r1886 8 8 Copyright (C) 2006, 2007 Jari Häkkinen, Peter Johansson, Markus Ringnér 9 9 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 10 Copyright (C) 2009 Peter Johansson 10 11 11 12 This file is part of the yat library, http://dev.thep.lu.se/yat … … 138 139 /** 139 140 \brief adding a ranges of values to AveragerPairWeighted \a ap 141 142 \relates AveragerPairWeighted 140 143 */ 141 144 template <class Iter1, class Iter2> … … 153 156 /** 154 157 \brief adding four ranges of values to AveragerPairWeighted \a ap 158 159 \relates AveragerPairWeighted 155 160 */ 156 161 template <class Iter1, class Iter2, class Iter3, class Iter4> -
trunk/yat/statistics/AveragerWeighted.h
r1797 r1886 8 8 Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér 9 9 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 10 Copyright (C) 2009 Peter Johansson 10 11 11 12 This file is part of the yat library, http://dev.thep.lu.se/yat … … 211 212 212 213 If iterator is non-weighted unitary weights are used. 214 215 \relates AveragerWeighted 213 216 */ 214 217 template <typename Iter> … … 227 230 228 231 Requirement: Iter1 and Iter2 are unweighted iterators. 232 233 \relates AveragerWeighted 229 234 */ 230 235 template <typename Iter1, typename Iter2> -
trunk/yat/statistics/Histogram.h
r1797 r1886 192 192 /** 193 193 Add a range [first, last) of values to Histogram. 194 195 \relates Histogram 194 196 */ 195 197 template<typename ForwardIterator> … … 204 206 } 205 207 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&); 210 214 211 215 }}} // of namespace statistics, yat, and theplu -
trunk/yat/statistics/KolmogorovSmirnov.h
r1874 r1886 190 190 /** 191 191 \brief output operator 192 193 \relates KolmogorovSmirnov 192 194 */ 193 195 std::ostream& operator<<(std::ostream&, const KolmogorovSmirnov&); -
trunk/yat/statistics/PearsonCorrelation.h
r1797 r1886 72 72 73 73 @return one-sided p-value 74 75 \relates PearsonCorrelation 74 76 */ 75 77 double p_value_one_sided() const; -
trunk/yat/statistics/Smoother.h
r1797 r1886 6 6 /* 7 7 Copyright (C) 2008 Jari Häkkinen, Peter Johansson 8 Copyright (C) 2009 Peter Johansson 8 9 9 10 This file is part of the yat library, http://dev.thep.lu.se/yat … … 94 95 /** 95 96 Add a range [first, last) of values to Smoother. 97 98 \relates Smoother 96 99 */ 97 100 template<typename ForwardIterator> … … 108 111 /** 109 112 The Smoother output operator 113 114 \relates Smoother 110 115 */ 111 116 std::ostream& operator<<(std::ostream& s,const Smoother&);
Note: See TracChangeset
for help on using the changeset viewer.