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 / Weibull < prev    next >
Encoding:
Text File  |  1997-04-23  |  772 b   |  25 lines

  1.     
  2.     _T_h_e _W_e_i_b_u_l_l _D_i_s_t_r_i_b_u_t_i_o_n
  3.     
  4.          dweibull(x, shape, scale=1)
  5.          pweibull(q, shape, scale=1)
  6.          qweibull(p, shape, scale=1)
  7.          rweibull(n, shape, scale=1)
  8.     
  9.     _D_e_s_c_r_i_p_t_i_o_n:
  10.     
  11.          These functions provide information about the Weibull
  12.          distribution with parameters shape and scale.  dweibull
  13.          gives the density, pweibull gives the distribution
  14.          function qweibull gives the quantile function and
  15.          rweibull generates random deviates.
  16.     
  17.          The Weibull distribution has density given by
  18.     
  19.                  f(x) = (a/b) (x/b)^(a-1) exp(- (x/b)^a)
  20.     
  21.          for x > 0.  Here a is the shape parameter of the dis-
  22.          tribution and b the scale parameter of the distribu-
  23.          tion.
  24.     
  25.