

wn(timeslab)                                 R Documentation

_S_i_m_u_l_a_t_e _W_h_i_t_e _N_o_i_s_e _D_a_t_a

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

     Simulate White Noise Data

_U_s_a_g_e_:

     wn(seed,n,dist=1)

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

    seed: Real scalar containing the seed for the random
          number generator.

       n: Integer containing the length of the desired real-
          ization.

    dist: Integer containing the number of the distribution
          to use based on the following values:

        : 1 ~~ N(0,1)

        : 2 ~~ U(0,1)

        : 3 ~~ Unit exponential

        : 4 ~~ Logistic

        : 5 ~~ Standard Cauchy

        : 6 ~~ Extreme value

        : 7 ~~ Lognormal

        : 8 ~~ Double exponential

_V_a_l_u_e_:

      wn: returns a realization of white noise from the
          specified distribution.

