annotate python/tests/indicators.txt @ 247:8f0ed138d373

moved the tests for indicators
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 18 Jul 2012 02:54:02 -0400
parents
children 5957aa1d69e1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
247
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
1 >>> from indicators import *
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
2 >>> from moving import TimeInterval,Trajectory
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
3
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
4 >>> indic1 = TemporalIndicator('bla', [0,3,-4], TimeInterval(4,6))
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
5 >>> indic1.empty()
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
6 False
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
7 >>> indic1[5]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
8 3
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
9 >>> indic1[3]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
10 >>> [v for v in indic1]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
11 [0, 3, -4]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
12 >>> indic1 = TemporalIndicator('bla', {2:0,4:3,5:-5})
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
13 >>> indic1[4]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
14 3
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
15 >>> indic1[3]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
16 >>> [v for v in indic1]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
17 [0, 3, -5]
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
18
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
19 >>> t1 = Trajectory([[0.5,1.5,2.5],[0.5,3.5,6.5]])
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
20 >>> indicatorMap([1,2,3], t1, 1)
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
21 {(1.0, 3.0): 2.0, (2.0, 6.0): 3.0, (0.0, 0.0): 1.0}
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
22 >>> indicatorMap([1,2,3], t1, 4)
8f0ed138d373 moved the tests for indicators
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
23 {(0.0, 1.0): 3.0, (0.0, 0.0): 1.5}