Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 05cd670d8a02b2b4a0ffb1756f2e8308 > files > 4475

php-manual-zh-5.2.4-1mdv2008.1.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>stats_cdf_beta</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REL="HOME"
TITLE="PHP 手册"
HREF="index.html"><LINK
REL="UP"
TITLE="Statistics Functions"
HREF="ref.stats.html"><LINK
REL="PREVIOUS"
TITLE="stats_absolute_deviation"
HREF="function.stats-absolute-deviation.html"><LINK
REL="NEXT"
TITLE="stats_cdf_binomial"
HREF="function.stats-cdf-binomial.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=UTF-8"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>PHP 手册</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.stats-absolute-deviation.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.stats-cdf-binomial.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.stats-cdf-beta"
></A
>stats_cdf_beta</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN219730"
></A
><P
>    (PECL)</P
>stats_cdf_beta&nbsp;--&nbsp;CDF function for BETA Distribution. Calculates any one parameter of the beta distribution given values for the others.</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN219733"
></A
><H2
>说明</H2
>float <B
CLASS="methodname"
>stats_cdf_beta</B
> ( float par1, float par2, float par3, int which )<BR
></BR
><P
>&#13;
                              Method

     Cumulative distribution function  (P)  is calculated directly by
     code associated with the following reference.

     DiDinato, A. R. and Morris,  A.   H.  Algorithm 708: Significant
     Digit Computation of the Incomplete  Beta  Function Ratios.  ACM
     Trans. Math.  Softw. 18 (1993), 360-373.

     Computation of other parameters involve a search for a value that
     produces  the desired  value  of P.   The search relies  on  the
     monotinicity of P with the other parameter.

                              Note

     The beta density is proportional to
               t^(A-1) * (1-t)^(B-1)

                              Arguments


     P -- The integral from 0 to X of the chi-square
            distribution.
            Input range: [0, 1].

     Q -- 1-P.
            Input range: [0, 1].
            P + Q = 1.0.

     X -- Upper limit of integration of beta density.
            Input range: [0,1].
            Search range: [0,1]

     Y -- 1-X.
            Input range: [0,1].
            Search range: [0,1]
            X + Y = 1.0.

     A -- The first parameter of the beta density.
            Input range: (0, +infinity).
            Search range: [1D-100,1D100]

     B -- The second parameter of the beta density.
            Input range: (0, +infinity).
            Search range: [1D-100,1D100]

     STATUS  -- 0 if calculation completed correctly
               -I if input parameter number I is out of range
                1 if answer appears to be lower than lowest
                  search bound
                2 if answer appears to be higher than greatest
                  search bound
                3 if P + Q .ne. 1
                4 if X + Y .ne. 1

     BOUND  -- Undefined if STATUS is 0

               Bound exceeded by parameter number I if STATUS
               is negative.

               Lower search bound if STATUS is 1.

               Upper search bound if STATUS is 2.

  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN219751"
></A
><H2
>参数</H2
><P
>&#13;   <P
></P
><DIV
CLASS="variablelist"
><DL
><DT
><CODE
CLASS="parameter"
>par1</CODE
></DT
><DD
><P
>&#13;       Its description
      </P
></DD
><DT
><CODE
CLASS="parameter"
>par2</CODE
></DT
><DD
><P
>&#13;       Its description
      </P
></DD
><DT
><CODE
CLASS="parameter"
>par3</CODE
></DT
><DD
><P
>&#13;       Its description
      </P
></DD
><DT
><CODE
CLASS="parameter"
>which</CODE
></DT
><DD
><P
>&#13;      Integer indicating which of the next four argument
               values is to be calculated from the others.
               Legal range: 1..4
               iwhich = 1 : Calculate P and Q from X,Y,A and B
               iwhich = 2 : Calculate X and Y from P,Q,A and B
               iwhich = 3 : Calculate A from P,Q,X,Y and B
               iwhich = 4 : Calculate B from P,Q,X,Y and A

      </P
></DD
></DL
></DIV
>
  </P
></DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN219775"
></A
><H2
>返回值</H2
><P
>&#13;     STATUS  -- 0 if calculation completed correctly
               -I if input parameter number I is out of range
                1 if answer appears to be lower than lowest
                  search bound
                2 if answer appears to be higher than greatest
                  search bound
                3 if P + Q .ne. 1
                4 if X + Y .ne. 1
  </P
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.stats-absolute-deviation.html"
ACCESSKEY="P"
>上一页</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>起始页</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.stats-cdf-binomial.html"
ACCESSKEY="N"
>下一页</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>stats_absolute_deviation</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.stats.html"
ACCESSKEY="U"
>上一级</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>stats_cdf_binomial</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>