close
Warning:
Can't synchronize with repository "(default)" (/var/svn/mms does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Jul 2, 2010, 10:39:24 AM (15 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v8
|
v9
|
|
23 | 23 | |
24 | 24 | {{{ |
25 | | #!c |
| 25 | #!java |
26 | 26 | @MMS.Transformation _.transformation = BoxCox(0,0); |
27 | 27 | }}} |
… |
… |
|
31 | 31 | Construcción de la transformación: |
32 | 32 | {{{ |
33 | | #!c |
| 33 | #!java |
34 | 34 | // Modo 1 |
35 | 35 | MMS::@Transformation _.transformation.1 = MMS::@Transformation.BoxCox::Default(0,0); |
… |
… |
|
43 | 43 | Alternativa en los argumentos de una MVariable: |
44 | 44 | {{{ |
45 | | #!c |
| 45 | #!java |
46 | 46 | // Modo 1 ó 2 |
47 | 47 | NameBlock [_.output|_.input] = [[ |
… |
… |
|
80 | 80 | (i) donde se definen constructores específicos para las transformaciones del proyecto: |
81 | 81 | {{{ |
82 | | #!c |
| 82 | #!java |
83 | 83 | /////////////////////////////////////////////////////////////////////////////// |
84 | 84 | @MMS.Transformation MMC_ExtendedNormalizeBoxCox(Real first, Real second, Date dat) |
… |
… |
|
111 | 111 | (ii) y donde se utilizan las transformaciones: |
112 | 112 | {{{ |
113 | | #!c |
| 113 | #!java |
114 | 114 | Text variableName = ...; |
115 | 115 | Real model::CreateBaseExpTermOmega([[ |
… |
… |
|
130 | 130 | |
131 | 131 | {{{ |
132 | | #!c |
| 132 | #!java |
133 | 133 | /////////////////////////////////////////////////////////////////////////////// |
134 | 134 | Serie MMC_ExtendedNormalizeBoxCox(Serie s, Real first, Real second, Date dat) |
… |
… |
|
152 | 152 | |
153 | 153 | {{{ |
154 | | #!c |
| 154 | #!java |
155 | 155 | Text variableName = ...; |
156 | 156 | |
… |
… |
|
177 | 177 | En ausencia de transformación sería simplemente: |
178 | 178 | {{{ |
179 | | #!c |
| 179 | #!java |
180 | 180 | Text variableName = ...; |
181 | 181 | Anything submodel::CreateExpTerm_TransferFunction([[ |