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:
-
Aug 18, 2010, 3:50:01 PM (15 years ago)
- Author:
-
Pedro Gea
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v6
|
v7
|
|
51 | 51 | MMS::@Forecast forecast = MMS::Container::CreateForecast[ReplaceForecast]([[ |
52 | 52 | Text _.name = <nombre>; |
| 53 | MMS::@Model _.model = <model>; |
| 54 | MMS::@Estimation _.estimation = <estimation>; |
53 | 55 | MMS::@SettingsForecast _.settings = [[ |
54 | 56 | Text _.mode = <mode>; // Modo de la previsión "Point" o "Sample" |
… |
… |
|
56 | 58 | ..... |
57 | 59 | ]]; |
58 | | MMS::@Model _.model = <model>; |
59 | | MMS::@Model _.estimation = <estimation>; |
60 | 60 | // Aquí se indica las fechas de comienzo y fin de la previsión, el primer campo expresa el nombre del submodelo al que se le asocian esas fechas. |
61 | | // Se admiten comodines, en el ejemplo "*" significa todos los submodelos, All* indicaría todos los submodelos que comiencen con "All". |
62 | | Set _.fIntervals = {Set [[ Set [["*", Date <beginprev>, Date <endprev>]] ]] } |
| 61 | // Se admiten comodines, en el ejemplo "*" significa todos los submodelos, "All*" indicaría todos los submodelos que comiencen con "All". |
| 62 | Set _.fIntervals = [[ |
| 63 | Set [["*", Date <beginprev>, Date <endprev>]] |
| 64 | ]] |
63 | 65 | ]]); |
64 | 66 | |