dcnorm                 package:mmlcr                 R Documentation

_D_e_n_s_i_t_y _f_u_n_c_t_i_o_n _f_o_r _C_e_n_s_o_r_e_d _N_o_r_m_a_l _D_i_s_t_r_i_b_u_t_i_o_n

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

     Density function for the censored (not truncated!) normal
     distribution in a form suitable for mmlcrlike

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

     dcnorm(x, mean = rep(0, length(x)), sigma = rep(1, length(x)), 
             min = rep(.Machine$double.xmin, length(x)), 
             max = rep(.Machine$double.xmax, length(x)))

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

       x: vector of quantiles 

    mean: vector of means

   sigma: vector of standard deviations 

     min: vector of left censoring cutoffs 

     max: vector of right censoring cutoffs 

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

     A vector of densities.

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

     'mmlcr', 'mmlcrlike'

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

     dcnorm(0, mean = 0, sigma = 1)

     dcnorm(0, mean = 0, sigma = 1, min = 0)

