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:
-
May 7, 2009, 10:37:44 AM (16 years ago)
- Author:
-
Víctor de Buen Remiro
- Comment:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
-
-
Property
Status
changed from
new
to
assigned
-
initial
|
v1
|
|
1 | | It is suggested to change the initial values for the polynomials AR or MA into the function GetArimaFromLabel placed in stdlib/math/stat/models/mle/arima/_fun_general.tol |
| 1 | It is suggested to change the initial values for the polynomials AR or MA into the function {{{GetArimaFromLabel}}} placed in [source:/tolp/trunk/tol/stdlib/math/stat/models/mle/arima/_fun_general.tol stdlib/math/stat/models/mle/arima/_fun_general.tol] |
2 | 2 | |
3 | 3 | Just now it appears: |
| 4 | {{{ |
4 | 5 | Polyn ar = GetPolynFromLabel("AR", arTxt, 0.1, period); |
5 | 6 | Polyn ma = GetPolynFromLabel("MA", maTxt, 0.1, period); |
| 7 | }}} |
6 | 8 | |
7 | 9 | The change is suggested to be: |
| 10 | {{{ |
8 | 11 | Polyn ar = GetPolynFromLabel("AR", arTxt, 0.1, period); |
9 | 12 | Polyn ma = GetPolynFromLabel("MA", maTxt, 0.2, period); |
| 13 | }}} |
10 | 14 | |
11 | | Or any other initial values, but different for AR and MA, in order to avoid the mistake of an BSR estimation when the arguments of the function ArimaStruct are constructed from GetArimaFromLabel. |
| 15 | Or any other initial values, but different for AR and MA, in order to avoid the mistake of an BSR estimation when the arguments of the function {{{ArimaStruct}}} are constructed from {{{GetArimaFromLabel}}}. |
12 | 16 | |
13 | 17 | thanks! |