absMax                  package:reb                  R Documentation

_A_b_s_o_l_u_t_e _M_a_x_i_m_a

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

     Returns the absolute maxima of the input values.

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

     absMax(x)

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

       x: numeric argument

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

     'absMax' returns the absolute maximum of all the values present in
     the arguments as 'double' persurving the sign. Essentially
     'max(abs(x),na.rm=T)'.

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

     Karl A. Dykema and Kyle A. Furge

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

       absMax(c(1,2,3,4))
       absMax(c(-1,-2,-3,-4))

