newEnv                  package:nls                  R Documentation

_C_r_e_a_t_e _a_n _e_n_v_i_r_o_n_m_e_n_t

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

     `newEnv' returns a new (empty) environment enclosed in the
     `enclos' environment.

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

     newEnv(enclos)

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

  enclos: An optional enclosing environment for the environment to be
          created.  If `enclos' is missing the new environment will be
          enclosed in the parent's environment.

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

     A new (empty) environment.

_W_A_R_N_I_N_G:

     This function is deprecated and will be removed in release 1.2.0. 
     Use `new.env' instead.

_A_u_t_h_o_r(_s):

     Saikat DebRoy <saikat@stat.wisc.edu>

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

     `new.env'

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

     myenv <- newEnv()
     str(myenv)

