

normalize(snns)                              R Documentation

_N_o_r_m_a_l_i_z_e _a _v_e_c_t_o_r

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

     Remove mean and normalize variance to one.

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

     normalize(x)

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

       x: numerical vector

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

     ## The function is currently defined as
     function (x)
     {
             (x - mean(x))/sqrt(var(x))
     }

