Mercurial > hg > nsaunier > traffic-intelligence
comparison python/tests/indicators.txt @ 1012:01db14e947e4
resolved
| author | Wendlasida |
|---|---|
| date | Fri, 01 Jun 2018 10:47:49 -0400 |
| parents | 933670761a57 |
| children |
comparison
equal
deleted
inserted
replaced
| 1011:4f0312bee393 | 1012:01db14e947e4 |
|---|---|
| 18 >>> indic1.getIthValue(3) | 18 >>> indic1.getIthValue(3) |
| 19 >>> indic1[2] | 19 >>> indic1[2] |
| 20 0 | 20 0 |
| 21 | 21 |
| 22 >>> t1 = Trajectory([[0.5,1.5,2.5],[0.5,3.5,6.5]]) | 22 >>> t1 = Trajectory([[0.5,1.5,2.5],[0.5,3.5,6.5]]) |
| 23 >>> indicatorMap([1,2,3], t1, 1) | 23 >>> m = indicatorMap([1,2,3], t1, 1) |
| 24 {(1.0, 3.0): 2.0, (2.0, 6.0): 3.0, (0.0, 0.0): 1.0} | 24 >>> m[(1.0, 3.0)] |
| 25 >>> indicatorMap([1,2,3], t1, 4) | 25 2.0 |
| 26 {(0.0, 1.0): 3.0, (0.0, 0.0): 1.5} | 26 >>> m[(2.0, 6.0)] |
| 27 3.0 | |
| 28 >>> m[(0.0, 0.0)] | |
| 29 1.0 | |
| 30 >>> m = indicatorMap([1,2,3], t1, 4) | |
| 31 >>> m[(0.0, 1.0)] | |
| 32 3.0 | |
| 33 >>> m[(0.0, 0.0)] | |
| 34 1.5 |
