Revision 162, 506 bytes
(checked in by smidl, 16 years ago)
|
opravy a dokumentace
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | #include <itpp/itbase.h> |
---|
2 | #include <stat/loggers.h> |
---|
3 | |
---|
4 | using namespace itpp; |
---|
5 | |
---|
6 | //These lines are needed for use of cout and endl |
---|
7 | using std::cout; |
---|
8 | using std::endl; |
---|
9 | |
---|
10 | int main() |
---|
11 | { |
---|
12 | int i; |
---|
13 | |
---|
14 | RV th = RV ( "{a b }"); |
---|
15 | RV r = RV ( "{r }","2"); |
---|
16 | |
---|
17 | dirfilelog L("exp/dirfile",10); |
---|
18 | |
---|
19 | int rid; |
---|
20 | int thid; |
---|
21 | |
---|
22 | rid=L.add(r,""); |
---|
23 | thid=L.add(th,"th"); |
---|
24 | |
---|
25 | L.init(); |
---|
26 | |
---|
27 | for (i=0; i<150; i++){ |
---|
28 | L.logit(rid,vec_2((double)i,(double)(i+1))); |
---|
29 | L.logit(thid,vec_2((double)(100-i),(double)(i-50))); |
---|
30 | L.step(); |
---|
31 | } |
---|
32 | L.finalize(); |
---|
33 | } |
---|