home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / Cauchy < prev    next >
Encoding:
Text File  |  1997-04-23  |  754 b   |  27 lines

  1.     
  2.     _T_h_e _C_a_u_c_h_y _D_i_s_t_r_i_b_u_t_i_o_n
  3.     
  4.          dcauchy(x, location=0, scale=1)
  5.          pcauchy(q, location=0, scale=1)
  6.          qcauchy(p, location=0, scale=1)
  7.          rcauchy(n, location=0, scale=1)
  8.     
  9.     _V_a_l_u_e:
  10.     
  11.          These functions provide information about the Cauchy
  12.          distribution with location parameter location and scale
  13.          parameter scale.
  14.     
  15.          dcauchy, pcauchy, and qcauchy are respectively the den-
  16.          sity, distribution function and quantile function of
  17.          the Cauchy distribution.  rcauchy generates random
  18.          deviates from the Cauchy.
  19.     
  20.          The Cauchy distribution with location l and scale s has
  21.          density
  22.     
  23.                    f(x) = 1 / (pi s (1 + ((x-l)/s)^2))
  24.     
  25.          for all x.
  26.     
  27.