Changeset 411
- Timestamp:
- Nov 30, 2005, 5:20:40 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/namespaces.doxygen
r391 r411 19 19 /// 20 20 /// @brief Random number distributions 21 ///22 /// @todo seed23 21 /// 24 22 -
trunk/lib/random/random.h
r389 r411 286 286 /// [0,n-1]. 287 287 /// 288 /// @todo exception should be thrown, when n is out of range289 ///290 288 DiscreteUniform(const u_long n); 291 289 … … 302 300 /// inclusive. All integers in the range [0,n-1] are equally 303 301 /// likely. 304 ///305 /// @todo exception should be thrown, when n is out of range306 302 /// 307 303 inline u_long operator()(const u_long n) const -
trunk/lib/statistics/AveragerWeighted.h
r400 r411 17 17 /// 18 18 /// @see Averager 19 ///20 /// @todo Check the implementation. Add link to peters21 /// stats_weighted.tex document. Make Averager and Averager*22 /// interface more coherent. Functions should fulfill the following:23 /// 1) all weights equal to unity yiels same as Averager 2)24 /// Rescaling all weights yields no difference 3) adding a data25 /// point with weight zero yields no difference 4) add(x,w) followed26 /// by add(x,w) is equivalent to add(x,2w). These conditions should27 /// be tested in test program.28 19 /// 29 20 class AveragerWeighted -
trunk/lib/statistics/Kernel.h
r389 r411 10 10 /// Abstract Base Class for calculating the weights in a more 11 11 /// general way than classical rectangular windows. 12 ///13 /// @todo move to theplu::statistics::regression namespace14 12 /// 15 13 -
trunk/lib/statistics/KernelBox.h
r389 r411 13 13 /// 14 14 /// Class for KernelBox a.k.a. rectangular window. 15 ///16 /// @todo move to theplu::statistics::regression namespace17 15 /// 18 16 class KernelBox : public Kernel -
trunk/lib/statistics/KernelTriCube.h
r389 r411 14 14 /// 15 15 /// Class for TriCubal kernel. 16 ///17 /// @todo move to theplu::statistics::regression namespace18 16 /// 19 17 class KernelTriCube : public Kernel -
trunk/lib/statistics/Local.h
r383 r411 71 71 /// function in used Regression. 72 72 /// 73 /// @todo change interface to not send in stream, but rather use a74 /// << operator for sending to strem75 73 void fit(std::ostream& s, const double fraction, const u_int step_size=1); 76 74 -
trunk/lib/utility/Exception.h
r389 r411 12 12 /// 13 13 /// @brief Class 14 ///15 /// @todo document16 14 /// 17 15 class IO_error : public std::runtime_error -
trunk/lib/utility/stl_utility.h
r341 r411 51 51 /// outcome of unexpected events will change. 52 52 /// 53 /// @todo Change the implementation of this function to follow C/C++54 /// style treatment of files and streams.55 ///56 53 bool read_to_double(std::istream&, std::vector<double>&); 57 54 … … 68 65 /// future. The overall functionality will be the same but the 69 66 /// outcome of unexpected events will change. 70 ///71 /// @todo Change the implementation of this function to follow C/C++72 /// style treatment of files and streams.73 67 /// 74 68 bool read_to_int(std::istream&, std::vector<int>&);
Note: See TracChangeset
for help on using the changeset viewer.