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:
-
Apr 25, 2012, 2:39:17 PM (13 years ago)
- Author:
-
Víctor de Buen Remiro
- Comment:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
-
-
Property
Status
changed from
new
to
closed
-
Property
Resolution
changed from
to
fixed
-
initial
|
v3
|
|
4 | 4 | |
5 | 5 | Sin embargo, al ir a probarlas nos ha dado error: |
6 | | |
7 | | '''ERROR: [1] x_ no es un objeto valido para el tipo Real. |
| 6 | {{{ |
| 7 | ERROR: [1] x_ no es un objeto valido para el tipo Real. |
8 | 8 | |
9 | 9 | [Call stack] |
… |
… |
|
25 | 25 | [2] Matrix StdLib::Interpolate::Scalar::fillMissAllMat (Matrix X, Matrix Y, Text method, Real order) |
26 | 26 | [1] Serie StdLib::Interpolate::Scalar::fillMissIsoSer (Serie y, Text method, Real order) |
27 | | ''' |
| 27 | }}} |
28 | 28 | |
29 | 29 | |
30 | 30 | Las series que hemos utilizado son las siguientes: |
| 31 | {{{ |
31 | 32 | Serie ser001.t1 = SubSer(CalInd(W, Mensual), y2010, y2010); |
32 | 33 | Serie ser001.t2 = Log(SubSer(CalInd(W, Mensual), y2010m2, y2010m12)); |
33 | 34 | Serie ser001.t3 = SubSer(Gaussian(1000, 50, Mensual), y2011, y2012); |
34 | 35 | Serie ser001 = ser001.t1 >> ser001.t2 >> ser001.t3; |
35 | | |
| 36 | }}} |
36 | 37 | Y las funciones que hemos probado son: |
| 38 | {{{ |
37 | 39 | Serie StdLib::Interpolate::Scalar::fillMissIsoSer(ser001, "linear", 12); |
38 | 40 | Serie StdLib::Interpolate::Scalar::fillMissAllSer(ser001, "linear", 12); |
| 41 | }}} |