HaarMA              package:wavethresh              R Documentation

_G_e_n_e_r_a_t_e _H_a_a_r _M_A _p_r_o_c_e_s_s_e_s.

_D_e_s_c_r_i_p_t_i_o_n:

     This function generates an arbitrary number of observations from a
     Haar MA process of any order with a particular variance.

_U_s_a_g_e:

     HaarMA(n, sd=1, order=5)

_A_r_g_u_m_e_n_t_s:

       n: The number of observations in the realization that you want
          to create. Note that n does NOT have to be a power of two.

      sd: The standard deviation of the innovations.

   order: The order of the Haar MA process.

_D_e_t_a_i_l_s:

     A Haar MA process is a special kind of time series moving-average
     (MA) process. A Haar MA process of order k is a MA process of
     order 2^k. The coefficients of the Haar MA process are given by
     the filter coefficients of the discrete Haar wavelet at different
     scales. 

     For example: the Haar MA process of order 1 is an MA process of
     order 2. The coefficients are 1/sqrt(2) and -1/sqrt(2). The Haar
     MA process of order 2 is an MA process of order 4. The
     coefficients are 1/2, 1/2, -1/2, -1/2 and so on. It is possible to
     define other processes for other wavelets as well. 

     Any Haar MA process is a good example of a (stationary) LSW
     process because it is sparsely representable by the
     locally-stationary wavelet machinery defined in Nason, von Sachs
     and Kroisandt.

_V_a_l_u_e:

     A vector containing a realization of a Haar MA process of the
     specified order, standard deviation and number of observations.

_R_E_L_E_A_S_E:

     Version 3.9 Copyright Guy Nason 1998

_R_e_f_e_r_e_n_c_e_s:

     Nason, G.P., von Sachs, R. and Kroisandt, G. (1998). Wavelet
     processes and adaptive estimation of the evolutionary wavelet
     spectrum. _Technical Report_, Department of Mathematics University
     of Bristol/ Fachbereich Mathematik, Kaiserslautern.

_S_e_e _A_l_s_o:

     'HaarConcat', 'ewspec',

_E_x_a_m_p_l_e_s:

     #
     # Generate a Haar MA process of order 1 (high frequency series)
     #
     #MyHaarMA <- HaarMA(n=151, sd=2, order=1)
     #
     # Plot it
     #
     #ts.plot(MyHaarMA)
     #
     # Generate another Haar MA process of order 3 (lower frequency), but of
     # smaller variance
     #
     #MyHaarMA2 <- HaarMA(n=151, sd=1, order=3)
     #
     # Plot it
     #
     #ts.plot(MyHaarMA2)
     #
     # Let's plot them next to each other so that you can really see the
     # differences.
     # 
     # Plot a vertical dotted line which indicates where the processes are
     # joined
     #
     #ts.plot(c(MyHaarMA, MyHaarMA2))
     #abline(v=152, lty=2)

