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:
-
Nov 30, 2010, 10:12:17 AM (14 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v9
|
v10
|
|
155 | 155 | Text variableName = ...; |
156 | 156 | |
157 | | MMS::@Variable vc = model::GetDataSet(?)::CreateVariableCalculated([[ |
| 157 | MMS::@Variable vc = model::GetDataSet(?)::CreateVariable([[ |
158 | 158 | ... |
159 | | Text _.variableName = variableName<<"_Transformed"; |
160 | | Set _.variableIdentifiers = [[ variableName ]] |
161 | | Text _.expression = transformationExpression |
| 159 | Text _.name = variableName<<"_Transformed"; |
| 160 | Text _.type = ...; |
| 161 | Text _.expression = transformationExpression; |
162 | 162 | // donde: |
163 | | // transformationExpression = "MMC_ExtendedNormalizeBoxCox(º1, 0, 0, <modelBegin>)" |
164 | | ... |
| 163 | // transformationExpression = "MMC_ExtendedNormalizeBoxCox(%1, 0, 0, <modelBegin>)" |
| 164 | // %i hace referencia a la i-ésima dependencia |
| 165 | Set _.dependences = [[ variableName ]] |
165 | 166 | ]]); |
166 | 167 | |