/*
* Mathlib : A C Library of Special Functions
* Copyright (C) 2006 The R Development Core Team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* SYNOPSIS
*
* #include <Rmath.h>
*
* double pbeta_raw(double x, double pin, double qin, int lower_tail, int log_p)
* double pbeta (double x, double pin, double qin, int lower_tail, int log_p)
*
* DESCRIPTION
*
* Returns distribution function of the beta distribution.
* ( = The incomplete beta ratio I_x(p,q) ).
*
* NOTES
*
* As from R 2.3.0, a wrapper for TOMS708
*/
#include "nmath.h"
#include "dpq.h"
attribute_hidden
double pbeta_raw(double x, double pin, double qin, int lower_tail, int log_p)
{
double x1 = 0.5 - x + 0.5, w, wc;
int ierr;
bratio(pin, qin, x, x1, &w, &wc, &ierr, log_p);
if(ierr)
MATHLIB_WARNING(_("pbeta_raw() -> bratio() gave error code %d"), ierr);
return lower_tail ? w : wc;
} /* pbeta_raw() */
double pbeta(double x, double pin, double qin, int lower_tail, int log_p)
{
#ifdef IEEE_754
if (ISNAN(x) || ISNAN(pin) || ISNAN(qin)) return x + pin + qin;
#endif
if (pin <= 0 || qin <= 0) ML_ERR_return_NAN;
if (x <= 0)
return R_DT_0;
if (x >= 1)
return R_DT_1;
/* <FIXME>
We need to consider log return if this can be small. That can happen if
1) x is very small and a and b are moderate (but not if 1-x is small)
in the left tail.
2) a or b is very large for all but a small range of x, in both the
left or right tail.
*/
return R_D_val(pbeta_raw(x, pin, qin, lower_tail, log_p));
}
syntax highlighted by Code2HTML, v. 0.9.1