Changeset 2141
- Timestamp:
- Jan 12, 2010, 11:03:32 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/concepts.doxygen
r2119 r2141 2 2 // 3 3 // Copyright (C) 2008 Jari Häkkinen, Peter Johansson, Markus Ringnér 4 // Copyright (C) 2009 Peter Johansson4 // Copyright (C) 2009, 2010 Peter Johansson 5 5 // 6 6 // This file is part of the yat library, http://dev.thep.lu.se/yat … … 26 26 27 27 - \subpage concept_container_2d 28 - \subpage concept_data_iterator 28 29 - \subpage concept_distance 29 30 - \subpage concept_mutable_container_2d … … 426 427 427 428 */ 429 430 /** 431 \page concept_data_iterator Data Iterator 432 433 \section Description 434 435 \ref concept_data_iterator is an iterator that comes in two shapes: 436 437 - it is either a \ref concept_weighted_iterator with value type 438 convertible to theplu::yat::utility::DataWeight 439 - it is an unweighted iterator with value type 440 convertible to \c double. 441 442 \section Implementations 443 444 Examples of concept \ref concept_data_iterator include: 445 - theplu::yat::utility::Matrix::iterator, 446 - theplu::yat::classifier::MatrixLookup::const_iterator, 447 - theplu::yat::classifier::MatrixLookupWeighted::const_iterator 448 */ -
trunk/yat/normalizer/qQuantileNormalizer.h
r2119 r2141 4 4 /* 5 5 Copyright (C) 2009 Jari Häkkinen, Peter Johansson 6 Copyright (C) 2010 Peter Johansson 6 7 7 8 This file is part of the yat library, http://dev.thep.lu.se/yat … … 106 107 \b Type \b Requirements: 107 108 - \c ForwardIterator is a model of \forward_iterator. 108 - \c ForwardIterator is either a \ref concept_weighted_iterator 109 or unweighted with value type convertible to \c double. 110 109 - \c ForwardIterator is a \ref concept_data_iterator 111 110 */ 112 111 template<typename ForwardIterator> … … 130 129 \b Type Requirements: 131 130 - \c RandomAccessIterator1 is a model of \random_access_iterator 132 - \c RandomAccessIterator1 is either a \ref 133 concept_weighted_iterator or unweighted with value type 134 convertible to \c double. 131 - \c RandomAccessIterator1 is a \ref concept_data_iterator 135 132 - \c RandomAccessIterator1's value type is convertible to 136 133 \c RandomAccessIterator2's value type -
trunk/yat/statistics/utility.h
r2119 r2141 9 9 Copyright (C) 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér 10 10 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 11 Copyright (C) 2009 Peter Johansson11 Copyright (C) 2009, 2010 Peter Johansson 12 12 13 13 This file is part of the yat library, http://dev.thep.lu.se/yat … … 120 120 /// can be const_iterators. 121 121 /// 122 /// Requirements: \c T should either be unweighted with value type 123 /// convertible to \c double or \c T should be weighted with value 124 /// type convertible to utility::DataWeight 122 /// Requirements: \c T should be a \ref concept_data_iterator 125 123 /// 126 124 /// @return median of range
Note: See TracChangeset
for help on using the changeset viewer.