Hyperbolic               package:base               R Documentation

_H_y_p_e_r_b_o_l_i_c _F_u_n_c_t_i_o_n_s

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

     These functions give the obvious hyperbolic functions.  They
     respectively compute the hyperbolic cosine, sine, tangent, and
     their inverses, arc-cosine, arc-sine, arc-tangent (or '_area
     cosine_', etc).

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

     cosh(x)
     sinh(x)
     tanh(x)
     acosh(x)
     asinh(x)
     atanh(x)

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

       x: a numeric or complex vector

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

     These are generic functions: methods can be defined for them
     individually or via the 'Math' group generic.

     Branch cuts are consistent with the inverse trigonometric
     functions 'asin()' et seq, and agree with those defined in
     Abramowitz and Stegun, figure 4.7, page 86.

_S_4 _m_e_t_h_o_d_s:

     All are S4 generic functions: methods can be defined for them
     individually or via the 'Math' group generic.

_R_e_f_e_r_e_n_c_e_s:

     Abramowitz, M. and Stegun, I. A. (1972) _Handbook of Mathematical
     Functions._ New York: Dover.
      Chapter 4. Elementary Transcendental Functions: Logarithmic,
     Exponential, Circular and Hyperbolic Functions

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

     The trigonometric functions, 'cos', 'sin', 'tan', and their
     inverses 'acos', 'asin', 'atan'.

     The logistic distribution function 'plogis' is a shifted version
     of 'tanh()' for numeric 'x'.

