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.

Changes between Version 6 and Version 7 of upgrade/transformations


Ignore:
Timestamp:
Jul 1, 2010, 12:56:40 PM (15 years ago)
Author:
josp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • upgrade/transformations

    v6 v7  
    2323
    2424{{{
     25#!c
    2526@MMS.Transformation _.transformation = BoxCox(0,0);
    2627}}}
     
    3031Construcción de la transformación:
    3132{{{
     33#!c
    3234// Modo 1
    3335@MMS.Transformation _.transformation.1 = @MMS.Transformation.BoxCox::Default(0,0);
     
    4143Alternativa en los argumentos de una MVariable:
    4244{{{
     45#!c
    4346// Modo 1 ó 2
    4447NameBlock [_.output|_.input] = [[
     
    7780(i) donde se definen constructores específicos para las transformaciones del proyecto:
    7881{{{
     82#!c
    7983///////////////////////////////////////////////////////////////////////////////
    8084@MMS.Transformation MMC_ExtendedNormalizeBoxCox(Real first, Real second, Date dat)
     
    107111(ii) y donde se utilizan las transformaciones:
    108112{{{
     113#!c
    109114Text variableName = ...;
    110115Real model::CreateBaseExpTermOmega([[
     
    125130
    126131{{{
     132#!c
    127133///////////////////////////////////////////////////////////////////////////////
    128134Serie MMC_ExtendedNormalizeBoxCox(Serie s, Real first, Real second, Date dat)
     
    146152
    147153{{{
     154#!c
    148155Text variableName = ...;
    149156
     
    170177En ausencia de transformación sería simplemente:
    171178{{{
     179#!c
    172180Text variableName = ...;
    173181@MMS.ExpTerm submodel::CreateExpTerm_TransferFunction([[
     
    180188]])
    181189}}}
    182 
    183