close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 6 and Version 7 of tolBasis


Ignore:
Timestamp:
May 13, 2015, 8:33:06 AM (10 years ago)
Author:
Pedro Gea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • tolBasis

    v6 v7  
    2222Ejemplos:
    2323{{{
    24 #!perl
     24#!ruby
    2525Date(2012) # equivale a y2012 en TOL
    2626Date(2015,5,12) # equivale a y2015m05d12 en TOL
     
    5959Ejemplos:
    6060{{{
    61 #!perl
     61#!ruby
    6262Dsucc(Sys.Date(), Monthly, 1) # próximo mes
    6363currYear <- Dfloor(Sys.Date(), Yearly) # año en curso
     
    7979Ejemplos:
    8080{{{
    81 #!perl
     81#!ruby
    8282Serie(rnorm(12), Monthly, Date(2015)) # constructor Serie
    8383ts1 <- ts(1:10, frequency = 4, start = c(1959, 2)) # constructor ts
     
    9999
    100100{{{
     101#!ruby
    101102s <- Serie(rnorm(12), Monthly, Date(2015))
    102103Ssub(s, Date(2015,6), Date(2015,8)) # datos de junio a agosto
     
    122123Ejemplos:
    123124{{{
     125#!ruby
    124126(1+B)^2
    125127pol <- (1-A)*(1+B)
    126 as.character(pol, forward="F")
     128as.character(pol, forward="F") # polinomio en formato TOL
    127129}}}
    128130
     
    137139Ejemplos:
    138140{{{
    139 #!perl
     141#!ruby
    140142(1-B)/(1+B)
    141143Ratio(1, 1-B)