close
Warning:
Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Jun 3, 2012, 8:08:07 PM (13 years ago)
- Author:
-
Jorge
- Comment:
-
First, the stack trace related to the Tk error does not appear in the current tol version v3.1 p011.
Next, it seems that there is an issue related to the precedence of the time series operators, as you can see in the following piece of code:
Serie s1 = SubSer(CalInd(Daily,C),y2012m01d01,y2012m02d01);
Serie s2 = Serie 2*SubSer(CalInd(Daily,C),y2012m03d01,y2012m04d01);
Serie s3 = s1 >> s2;
Serie s4 = SubSer(CalInd(Daily,C),y2012m01d01,y2012m02d01) >> Serie 2*SubSer(CalInd(Daily,C),y2012m03d01,y2012m04d01);
Serie s5 = SubSer(CalInd(Daily,C),y2012m01d01,y2012m02d01) >> (Serie 2*SubSer(CalInd(Daily,C),y2012m03d01,y2012m04d01));
Perhaps the user expected the three time series s3, s4, and s5 were equals, but as we can see s4 is different to the other two (does not contains the first segment from y2012m01d01 to y2012m02d01.
Legend:
- Unmodified
- Added
- Removed
- Modified
-
- Property Owner changed from Jorge to Víctor de Buen Remiro
-
Property
Status
changed from
new
to
assigned
-
Property
Component
changed from
Interface
to
TimeAlgebra
-
v1
|
v2
|
|
1 | 1 | I have tried to build a series with missing values in between in other to use it for a ticket example but both intents failed: |
2 | 2 | |
| 3 | {{{ |
| 4 | #!java |
3 | 5 | Serie auxser = SubSer(CalInd(Daily,C),y2012m01d01,y2012m02d01) >> Serie 2*SubSer(CalInd(Daily,C),y2012m03d01,y2012m04d01) ; |
| 6 | }}} |
4 | 7 | |
5 | 8 | In this case I get |