posMin              package:tilingArray              R Documentation

_F_i_n_d _t_h_e _s_m_a_l_l_e_s_t _p_o_s_i_t_i_v_e _n_u_m_b_e_r _i_n _a _v_e_c_t_o_r

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

     Find the smallest positive number in a vector

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

     posMin(x, ...)

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

       x: Numeric vector.

     ...: Further arguments that get passed on to 'min'.

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

     This is a rather trivial convenience function.

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

     Numeric of length 1.

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

     W. Huber <huber@ebi.ac.uk>

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

       x = runif(5)
       posMin(x-0.5)
       posMin(x-2)

