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 1, 2010, 12:56:40 PM (15 years ago)
- Author:
-
josp
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v6
|
v7
|
|
| 23 | 23 | |
| 24 | 24 | {{{ |
| | 25 | #!c |
| 25 | 26 | @MMS.Transformation _.transformation = BoxCox(0,0); |
| 26 | 27 | }}} |
| … |
… |
|
| 30 | 31 | Construcción de la transformación: |
| 31 | 32 | {{{ |
| | 33 | #!c |
| 32 | 34 | // Modo 1 |
| 33 | 35 | @MMS.Transformation _.transformation.1 = @MMS.Transformation.BoxCox::Default(0,0); |
| … |
… |
|
| 41 | 43 | Alternativa en los argumentos de una MVariable: |
| 42 | 44 | {{{ |
| | 45 | #!c |
| 43 | 46 | // Modo 1 ó 2 |
| 44 | 47 | NameBlock [_.output|_.input] = [[ |
| … |
… |
|
| 77 | 80 | (i) donde se definen constructores específicos para las transformaciones del proyecto: |
| 78 | 81 | {{{ |
| | 82 | #!c |
| 79 | 83 | /////////////////////////////////////////////////////////////////////////////// |
| 80 | 84 | @MMS.Transformation MMC_ExtendedNormalizeBoxCox(Real first, Real second, Date dat) |
| … |
… |
|
| 107 | 111 | (ii) y donde se utilizan las transformaciones: |
| 108 | 112 | {{{ |
| | 113 | #!c |
| 109 | 114 | Text variableName = ...; |
| 110 | 115 | Real model::CreateBaseExpTermOmega([[ |
| … |
… |
|
| 125 | 130 | |
| 126 | 131 | {{{ |
| | 132 | #!c |
| 127 | 133 | /////////////////////////////////////////////////////////////////////////////// |
| 128 | 134 | Serie MMC_ExtendedNormalizeBoxCox(Serie s, Real first, Real second, Date dat) |
| … |
… |
|
| 146 | 152 | |
| 147 | 153 | {{{ |
| | 154 | #!c |
| 148 | 155 | Text variableName = ...; |
| 149 | 156 | |
| … |
… |
|
| 170 | 177 | En ausencia de transformación sería simplemente: |
| 171 | 178 | {{{ |
| | 179 | #!c |
| 172 | 180 | Text variableName = ...; |
| 173 | 181 | @MMS.ExpTerm submodel::CreateExpTerm_TransferFunction([[ |
| … |
… |
|
| 180 | 188 | ]]) |
| 181 | 189 | }}} |
| 182 | | |
| 183 | | |