- Timestamp:
- Jun 7, 2008, 1:58:39 AM (14 years ago)
- Location:
- trunk/yat
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/Average.h
r1317 r1339 34 34 /** 35 35 \brief Functor to take average of a range. 36 37 \since New in yat 0.5 36 38 */ 37 39 struct Average -
trunk/yat/statistics/Percentiler.h
r1323 r1339 38 38 /** 39 39 \brief Functor to calculate percentile of a range 40 41 \since New in yat 0.5 40 42 */ 41 43 class Percentiler -
trunk/yat/statistics/Smoother.h
r1311 r1339 39 39 /** 40 40 @brief Estimating a distribution in a smooth fashion 41 42 \since New in yat 0.5 41 43 */ 42 44 class Smoother -
trunk/yat/utility/Range.h
r1337 r1339 37 37 end), defined by two iterators of type T. This can be useful, for 38 38 example, when creating numerous sub-ranges of a larger container. 39 40 \since New in yat 0.5 39 41 */ 40 42 template<typename T> … … 88 90 \brief Equality comparison 89 91 \return true iff underlying elements are equal 92 93 \since New in yat 0.5 90 94 */ 91 95 template<typename T1, typename T2> … … 94 98 /** 95 99 \brief Based on operator== 100 101 \since New in yat 0.5 96 102 */ 97 103 template<typename T1, typename T2> … … 104 110 105 111 \return true if \a lhs < \a rhs 112 113 \since New in yat 0.5 106 114 */ 107 115 template<typename T1, typename T2> … … 110 118 /** 111 119 \return ! (\a rhs < \a lhs ) 120 121 \since New in yat 0.5 112 122 */ 113 123 template<typename T1, typename T2> … … 116 126 /** 117 127 \return \a rhs < \a lhs 128 129 \since New in yat 0.5 118 130 */ 119 131 template<typename T1, typename T2> … … 122 134 /** 123 135 \return ! (\a lhs < \a rhs ) 136 137 \since New in yat 0.5 124 138 */ 125 139 template<typename T1, typename T2> -
trunk/yat/utility/stl_utility.h
r1288 r1339 121 121 /** 122 122 Functor class to exponentiate values using std::exp 123 124 \since New in yat 0.5 123 125 */ 124 126 template<typename T> … … 134 136 /** 135 137 Functor class to take logarithm 138 139 \since New in yat 0.5 136 140 */ 137 141 template<typename T> -
trunk/yat/utility/utility.h
r1338 r1339 56 56 /** 57 57 \brief check if string is convertible to (numerical) type 58 59 \since New in yat 0.5 58 60 */ 59 61 template<typename T> … … 98 100 /** 99 101 \brief Perform quantile normalization 102 103 \since New in yat 0.5 100 104 */ 101 105 void quantile_normalize(Matrix&); -
trunk/yat/utility/version.h.in
r1328 r1339 40 40 41 41 No compatibility is guarenteed between MAJOR versions. 42 43 \since New in yat 0.5 42 44 */ 43 45 #define YAT_MAJOR_VERSION @YAT_MAJOR_VERSION@ … … 48 50 Minor API changes that do not cause binary compatibility problems. 49 51 Reset to 0 when upgrading YAT_MAJOR_VERSION 52 53 \since New in yat 0.5 50 54 */ 51 55 #define YAT_MINOR_VERSION @YAT_MINOR_VERSION@ … … 56 60 The Patch level never includes API changes, simply bug fixes. 57 61 Reset to 0 when upgrading YAT_MINOR_VERSION 62 63 \since New in yat 0.5 58 64 */ 59 65 #define YAT_PATCH_VERSION @YAT_PATCH_VERSION@ … … 63 69 64 70 The version of yat in string format 71 72 \since New in yat 0.5 65 73 */ 66 74 #define YAT_VERSION "@VERSION@" … … 70 78 71 79 Is set to true in releases 80 81 \since New in yat 0.5 72 82 */ 73 83 #define YAT_DEV_BUILD @YAT_DEV_BUILD@ … … 81 91 /** 82 92 \return major version number of compiled yat library 93 94 \since New in yat 0.5 83 95 */ 84 96 unsigned int major_version(void); … … 86 98 /** 87 99 \return minor version number of compiled yat library 100 101 \since New in yat 0.5 88 102 */ 89 103 unsigned int minor_version(void); … … 91 105 /** 92 106 \return patch version number of compiled yat library 107 108 \since New in yat 0.5 93 109 */ 94 110 unsigned int patch_version(void); … … 96 112 /** 97 113 \return version number of compiled yat library 114 115 \since New in yat 0.5 98 116 */ 99 117 std::string version(void);
Note: See TracChangeset
for help on using the changeset viewer.