TS++ library: time series library
random.h
Go to the documentation of this file.
1 
36 // include guard
37 #ifndef TS_RANDOM_H_VERSION
38 
39 #define TS_RANDOM_H_VERSION \
40  "TS_RANDOM_H V1.0"
41 
42 #include<aff/series.h>
43 
44 namespace ts {
45 
48  namespace rnd {
49 
50  typedef aff::Series<double> Tdseries;
51 
53  Tdseries dugauss(const int& n);
54 
55  } // namespace rnd
56 
57 } // namespace ts
58 
59 #endif // TS_RANDOM_H_VERSION (includeguard)
60 
61 /* ----- END OF random.h ----- */
Tdseries dugauss(const int &n)
return gaussian uniform noise (standard dev=1, zero mean)
Definition: random.cc:72
All stuff in this library will be placed within namespace ts.
Definition: anyfilter.cc:43
aff::Series< double > Tdseries
Definition: random.h:50