diff python/tests/indicators.txt @ 287:66691c06928c

first version of indicator LCSS
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Sun, 27 Jan 2013 00:51:48 -0500
parents 5957aa1d69e1
children 933670761a57
line wrap: on
line diff
--- a/python/tests/indicators.txt	Sun Jan 27 00:22:55 2013 -0500
+++ b/python/tests/indicators.txt	Sun Jan 27 00:51:48 2013 -0500
@@ -4,20 +4,20 @@
 >>> indic1 = TemporalIndicator('bla', [0,3,-4], TimeInterval(4,6))
 >>> indic1.empty()
 False
->>> indic1.valueAtInstant(5)
+>>> indic1.getIthValue(1)
 3
->>> indic1.valueAtInstant(3)
->>> indic1[1]
-3
->>> indic1[5]
+>>> indic1.getIthValue(3)
+>>> indic1[6]
+-4
+>>> indic1[7]
 >>> [v for v in indic1]
 [0, 3, -4]
 >>> indic1 = TemporalIndicator('bla', {2:0,4:3,5:-5})
->>> indic1.valueAtInstant(4)
+>>> indic1.getIthValue(1)
 3
->>> indic1.valueAtInstant(3)
+>>> indic1.getIthValue(3)
 >>> indic1[2]
--5
+0
 
 >>> t1 = Trajectory([[0.5,1.5,2.5],[0.5,3.5,6.5]])
 >>> indicatorMap([1,2,3], t1, 1)