1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
|
/*
Theseus - maximum likelihood superpositioning of macromolecular structures
Copyright (C) 2004-2015 Douglas L. Theobald
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.,
59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
-/_|:|_|_\-
*/
/* -------------------------------------------------------------------------
* This is an ANSI C library that can be used to evaluate the probability
* density functions (pdf's), cumulative distribution functions (cdf's), and
* inverse distribution functions (idf's) for a variety of discrete and
* continuous random variables.
*
* The following notational conventions are used
* x : possible value of the random variable
* u : real variable (probability) between 0.0 and 1.0
* a, b, n, p, m, s : distribution-specific parameters
*
* There are pdf's, cdf's and idf's for 6 discrete random variables
*
* Random Variable Range (x) Mean Variance
*
* Bernoulli(p) 0..1 p p*(1-p)
* Binomial(n, p) 0..n n*p n*p*(1-p)
* Equilikely(a, b) a..b (a+b)/2 ((b-a+1)*(b-a+1)-1)/12
* Geometric(p) 0... p/(1-p) p/((1-p)*(1-p))
* Pascal(n, p) 0... n*p/(1-p) n*p/((1-p)*(1-p))
* Poisson(m) 0... m m
*
* and for 7 continuous random variables
*
* Uniform(a, b) a < x < b (a+b)/2 (b-a)*(b-a)/12
* Exponential(m) x > 0 m m*m
* Erlang(n, b) x > 0 n*b n*b*b
* Normal(m, s) all x m s*s
* Lognormal(a, b) x > 0 see below
* Chisquare(n) x > 0 n 2*n
* Student(n) all x 0 (n > 1) n/(n-2) (n > 2)
*
* For the Lognormal(a, b), the mean and variance are
*
* mean = Exp(a + 0.5*b*b)
* variance = (Exp(b*b) - 1)*Exp(2*a + b*b)
*
* Name : rvms.c (Random Variable ModelS)
* Author : Steve Park & Dave Geyer
* Language : ANSI C
* Latest Revision : 11-22-97
* -------------------------------------------------------------------------
*/
#include <math.h>
#include <stdio.h>
#include "rvms.h"
#define TINY 1.0e-10
#define SQRT2PI 2.506628274631 /* sqrt(2 * pi) */
static double pdfStandard(double x);
static double cdfStandard(double x);
static double idfStandard(double u);
static double LogGamma(double a);
static double LogBeta(double a, double b);
double InGamma(double a, double b);
double InBeta(double a, double b, double x);
double pdfBernoulli(double p, long x)
/* =======================================
* NOTE: use 0.0 < p < 1.0 and 0 <= x <= 1
* =======================================
*/
{
return ((x == 0) ? 1.0 - p : p);
}
double cdfBernoulli(double p, long x)
/* =======================================
* NOTE: use 0.0 < p < 1.0 and 0 <= x <= 1
* =======================================
*/
{
return ((x == 0) ? 1.0 - p : 1.0);
}
long idfBernoulli(double p, double u)
/* =========================================
* NOTE: use 0.0 < p < 1.0 and 0.0 < u < 1.0
* =========================================
*/
{
return ((u < 1.0 - p) ? 0 : 1);
}
double pdfEquilikely(long a, long b, long x)
/* ============================================
* NOTE: use a <= x <= b
* ============================================
*/
{
return (1.0 / (b - a + 1.0));
}
double cdfEquilikely(long a, long b, long x)
/* ============================================
* NOTE: use a <= x <= b
* ============================================
*/
{
return ((x - a + 1.0) / (b - a + 1.0));
}
long idfEquilikely(long a, long b, double u)
/* ============================================
* NOTE: use a <= b and 0.0 < u < 1.0
* ============================================
*/
{
return (a + (long) (u * (b - a + 1)));
}
double pdfBinomial(long n, double p, long x)
/* ============================================
* NOTE: use 0 <= x <= n and 0.0 < p < 1.0
* ============================================
*/
{
double s, t;
s = LogChoose(n, x);
t = x * log(p) + (n - x) * log(1.0 - p);
return (exp(s + t));
}
double cdfBinomial(long n, double p, long x)
/* ============================================
* NOTE: use 0 <= x <= n and 0.0 < p < 1.0
* ============================================
*/
{
if (x < n)
return (1.0 - InBeta(x + 1, n - x, p));
else
return (1.0);
}
long idfBinomial(long n, double p, double u)
/* =================================================
* NOTE: use 0 <= n, 0.0 < p < 1.0 and 0.0 < u < 1.0
* =================================================
*/
{
long x = (long) (n * p); /* start searching at the mean */
if (cdfBinomial(n, p, x) <= u)
while (cdfBinomial(n, p, x) <= u)
x++;
else if (cdfBinomial(n, p, 0) <= u)
while (cdfBinomial(n, p, x - 1) > u)
x--;
else
x = 0;
return (x);
}
double pdfGeometric(double p, long x)
/* =====================================
* NOTE: use 0.0 < p < 1.0 and x >= 0
* =====================================
*/
{
return ((1.0 - p) * exp(x * log(p)));
}
double cdfGeometric(double p, long x)
/* =====================================
* NOTE: use 0.0 < p < 1.0 and x >= 0
* =====================================
*/
{
return (1.0 - exp((x + 1) * log(p)));
}
long idfGeometric(double p, double u)
/* =========================================
* NOTE: use 0.0 < p < 1.0 and 0.0 < u < 1.0
* =========================================
*/
{
return ((long) (log(1.0 - u) / log(p)));
}
double pdfPascal(long n, double p, long x)
/* ===========================================
* NOTE: use n >= 1, 0.0 < p < 1.0, and x >= 0
* ===========================================
*/
{
double s, t;
s = LogChoose(n + x - 1, x);
t = x * log(p) + n * log(1.0 - p);
return (exp(s + t));
}
double cdfPascal(long n, double p, long x)
/* ===========================================
* NOTE: use n >= 1, 0.0 < p < 1.0, and x >= 0
* ===========================================
*/
{
return (1.0 - InBeta(x + 1, n, p));
}
long idfPascal(long n, double p, double u)
/* ==================================================
* NOTE: use n >= 1, 0.0 < p < 1.0, and 0.0 < u < 1.0
* ==================================================
*/
{
long x = (long) (n * p / (1.0 - p)); /* start searching at the mean */
if (cdfPascal(n, p, x) <= u)
while (cdfPascal(n, p, x) <= u)
x++;
else if (cdfPascal(n, p, 0) <= u)
while (cdfPascal(n, p, x - 1) > u)
x--;
else
x = 0;
return (x);
}
double pdfPoisson(double m, long x)
/* ===================================
* NOTE: use m > 0 and x >= 0
* ===================================
*/
{
double t;
t = - m + x * log(m) - LogFactorial(x);
return (exp(t));
}
double cdfPoisson(double m, long x)
/* ===================================
* NOTE: use m > 0 and x >= 0
* ===================================
*/
{
return (1.0 - InGamma(x + 1, m));
}
long idfPoisson(double m, double u)
/* ===================================
* NOTE: use m > 0 and 0.0 < u < 1.0
* ===================================
*/
{
long x = (long) m; /* start searching at the mean */
if (cdfPoisson(m, x) <= u)
while (cdfPoisson(m, x) <= u)
x++;
else if (cdfPoisson(m, 0) <= u)
while (cdfPoisson(m, x - 1) > u)
x--;
else
x = 0;
return (x);
}
double pdfUniform(double a, double b, double x)
/* ===============================================
* NOTE: use a < x < b
* ===============================================
*/
{
return (1.0 / (b - a));
}
double cdfUniform(double a, double b, double x)
/* ===============================================
* NOTE: use a < x < b
* ===============================================
*/
{
return ((x - a) / (b - a));
}
double idfUniform(double a, double b, double u)
/* ===============================================
* NOTE: use a < b and 0.0 < u < 1.0
* ===============================================
*/
{
return (a + (b - a) * u);
}
double pdfExponential(double m, double x)
/* =========================================
* NOTE: use m > 0 and x > 0
* =========================================
*/
{
return ((1.0 / m) * exp(- x / m));
}
double cdfExponential(double m, double x)
/* =========================================
* NOTE: use m > 0 and x > 0
* =========================================
*/
{
return (1.0 - exp(- x / m));
}
double idfExponential(double m, double u)
/* =========================================
* NOTE: use m > 0 and 0.0 < u < 1.0
* =========================================
*/
{
return (- m * log(1.0 - u));
}
double pdfErlang(long n, double b, double x)
/* ============================================
* NOTE: use n >= 1, b > 0, and x > 0
* ============================================
*/
{
double t;
t = (n - 1) * log(x / b) - (x / b) - log(b) - LogGamma(n);
return (exp(t));
}
double cdfErlang(long n, double b, double x)
/* ============================================
* NOTE: use n >= 1, b > 0, and x > 0
* ============================================
*/
{
return (InGamma(n, x / b));
}
double idfErlang(long n, double b, double u)
/* ============================================
* NOTE: use n >= 1, b > 0 and 0.0 < u < 1.0
* ============================================
*/
{
double t, x = n * b; /* initialize to the mean, then */
do { /* use Newton-Raphson iteration */
t = x;
x = t + (u - cdfErlang(n, b, t)) / pdfErlang(n, b, t);
if (x <= 0.0)
x = 0.5 * t;
} while (fabs(x - t) >= TINY);
return (x);
}
static double pdfStandard(double x)
/* ===================================
* NOTE: x can be any value
* ===================================
*/
{
return (exp(- 0.5 * x * x) / SQRT2PI);
}
static double cdfStandard(double x)
/* ===================================
* NOTE: x can be any value
* ===================================
*/
{
double t;
t = InGamma(0.5, 0.5 * x * x);
if (x < 0.0)
return (0.5 * (1.0 - t));
else
return (0.5 * (1.0 + t));
}
static double idfStandard(double u)
/* ===================================
* NOTE: 0.0 < u < 1.0
* ===================================
*/
{
double t, x = 0.0; /* initialize to the mean, then */
do { /* use Newton-Raphson iteration */
t = x;
x = t + (u - cdfStandard(t)) / pdfStandard(t);
} while (fabs(x - t) >= TINY);
return (x);
}
double pdfNormal(double m, double s, double x)
/* ==============================================
* NOTE: x and m can be any value, but s > 0.0
* ==============================================
*/
{
double t = (x - m) / s;
return (pdfStandard(t) / s);
}
double cdfNormal(double m, double s, double x)
/* ==============================================
* NOTE: x and m can be any value, but s > 0.0
* ==============================================
*/
{
double t = (x - m) / s;
return (cdfStandard(t));
}
double idfNormal(double m, double s, double u)
/* =======================================================
* NOTE: m can be any value, but s > 0.0 and 0.0 < u < 1.0
* =======================================================
*/
{
return (m + s * idfStandard(u));
}
double pdfLognormal(double a, double b, double x)
/* ===================================================
* NOTE: a can have any value, but b > 0.0 and x > 0.0
* ===================================================
*/
{
double t = (log(x) - a) / b;
return (pdfStandard(t) / (b * x));
}
double cdfLognormal(double a, double b, double x)
/* ===================================================
* NOTE: a can have any value, but b > 0.0 and x > 0.0
* ===================================================
*/
{
double t = (log(x) - a) / b;
return (cdfStandard(t));
}
double idfLognormal(double a, double b, double u)
/* =========================================================
* NOTE: a can have any value, but b > 0.0 and 0.0 < u < 1.0
* =========================================================
*/
{
double t;
t = a + b * idfStandard(u);
return (exp(t));
}
double pdfChisquare(long n, double x)
/* =====================================
* NOTE: use n >= 1 and x > 0.0
* =====================================
*/
{
double t, s = n / 2.0;
t = (s - 1.0) * log(x / 2.0) - (x / 2.0) - log(2.0) - LogGamma(s);
return (exp(t));
}
double cdfChisquare(long n, double x)
/* =====================================
* NOTE: use n >= 1 and x > 0.0
* =====================================
*/
{
return (InGamma(n / 2.0, x / 2));
}
double idfChisquare(long n, double u)
/* =====================================
* NOTE: use n >= 1 and 0.0 < u < 1.0
* =====================================
*/
{
double t, x = n; /* initialize to the mean, then */
do { /* use Newton-Raphson iteration */
t = x;
x = t + (u - cdfChisquare(n, t)) / pdfChisquare(n, t);
if (x <= 0.0)
x = 0.5 * t;
} while (fabs(x - t) >= TINY);
return (x);
}
double pdfStudent(long n, double x)
/* ===================================
* NOTE: use n >= 1 and x > 0.0
* ===================================
*/
{
double s, t;
s = -0.5 * (n + 1) * log(1.0 + ((x * x) / (double) n));
t = -LogBeta(0.5, n / 2.0);
return (exp(s + t) / sqrt((double) n));
}
double cdfStudent(long n, double x)
/* ===================================
* NOTE: use n >= 1 and x > 0.0
* ===================================
*/
{
double s, t;
t = (x * x) / (n + x * x);
s = InBeta(0.5, n / 2.0, t);
if (x >= 0.0)
return (0.5 * (1.0 + s));
else
return (0.5 * (1.0 - s));
}
double idfStudent(long n, double u)
/* ===================================
* NOTE: use n >= 1 and 0.0 < u < 1.0
* ===================================
*/
{
double t, x = 0.0; /* initialize to the mean, then */
do { /* use Newton-Raphson iteration */
t = x;
x = t + (u - cdfStudent(n, t)) / pdfStudent(n, t);
} while (fabs(x - t) >= TINY);
return (x);
}
/* ===================================================================
* The six functions that follow are a 'special function' mini-library
* used to support the evaluation of pdf, cdf and idf functions.
* ===================================================================
*/
static double LogGamma(double a)
/* ========================================================================
* LogGamma returns the natural log of the gamma function.
* NOTE: use a > 0.0
*
* The algorithm used to evaluate the natural log of the gamma function is
* based on an approximation by C. Lanczos, SIAM J. Numerical Analysis, B,
* vol 1, 1964. The constants have been selected to yield a relative error
* which is less than 2.0e-10 for all positive values of the parameter a.
* ========================================================================
*/
{
double s[6], sum, temp;
int i;
s[0] = 76.180091729406 / a;
s[1] = -86.505320327112 / (a + 1.0);
s[2] = 24.014098222230 / (a + 2.0);
s[3] = -1.231739516140 / (a + 3.0);
s[4] = 0.001208580030 / (a + 4.0);
s[5] = -0.000005363820 / (a + 5.0);
sum = 1.000000000178;
for (i = 0; i < 6; i++)
sum += s[i];
temp = (a - 0.5) * log(a + 4.5) - (a + 4.5) + log(SQRT2PI * sum);
return (temp);
}
double LogFactorial(long n)
/* ==================================================================
* LogFactorial(n) returns the natural log of n!
* NOTE: use n >= 0
*
* The algorithm used to evaluate the natural log of n! is based on a
* simple equation which relates the gamma and factorial functions.
* ==================================================================
*/
{
return (LogGamma(n + 1));
}
static double LogBeta(double a, double b)
/* ======================================================================
* LogBeta returns the natural log of the beta function.
* NOTE: use a > 0.0 and b > 0.0
*
* The algorithm used to evaluate the natural log of the beta function is
* based on a simple equation which relates the gamma and beta functions.
*
*/
{
return (LogGamma(a) + LogGamma(b) - LogGamma(a + b));
}
double LogChoose(long n, long m)
/* ========================================================================
* LogChoose returns the natural log of the binomial coefficient C(n,m).
* NOTE: use 0 <= m <= n
*
* The algorithm used to evaluate the natural log of a binomial coefficient
* is based on a simple equation which relates the beta function to a
* binomial coefficient.
* ========================================================================
*/
{
if (m > 0)
return (-LogBeta(m, n - m + 1) - log(m));
else
return (0.0);
}
double InGamma(double a, double x)
/* ========================================================================
* Evaluates the incomplete gamma function.
* NOTE: use a > 0.0 and x >= 0.0
*
* The algorithm used to evaluate the incomplete gamma function is based on
* Algorithm AS 32, J. Applied Statistics, 1970, by G. P. Bhattacharjee.
* See also equations 6.5.29 and 6.5.31 in the Handbook of Mathematical
* Functions, Abramowitz and Stegum (editors). The absolute error is less
* than 1e-10 for all non-negative values of x.
* ========================================================================
*/
{
double t, sum, term, factor, f, g, c[2], p[3], q[3];
long n;
int cnt, itmax = 300;
if (x > 0.0)
factor = exp(-x + a * log(x) - LogGamma(a));
else
factor = 0.0;
if (x < a + 1.0)
{ /* evaluate as an infinite series - */
t = a; /* A & S equation 6.5.29 */
term = 1.0 / a;
sum = term;
cnt = 0;
while (term >= TINY * sum && cnt < itmax) /* sum until 'term' is small */
{
cnt++;
t++;
term *= x / t;
sum += term;
}
return (factor * sum);
}
else
{ /* evaluate as a continued fraction - */
p[0] = 0.0; /* A & S eqn 6.5.31 with the extended */
q[0] = 1.0; /* pattern 2-a, 2, 3-a, 3, 4-a, 4,... */
p[1] = 1.0; /* - see also A & S sec 3.10, eqn (3) */
q[1] = x;
f = p[1] / q[1];
n = 0;
cnt = 0;
do { /* recursively generate the continued */
g = f; /* fraction 'f' until two consecutive */
n++; /* values are small */
cnt++;
if ((n % 2) > 0) {
c[0] = ((double) (n + 1) / 2) - a;
c[1] = 1.0;
}
else {
c[0] = (double) n / 2;
c[1] = x;
}
p[2] = c[1] * p[1] + c[0] * p[0];
q[2] = c[1] * q[1] + c[0] * q[0];
if (q[2] != 0.0) { /* rescale to avoid overflow */
p[0] = p[1] / q[2];
q[0] = q[1] / q[2];
p[1] = p[2] / q[2];
q[1] = 1.0;
f = p[1];
}
} while (cnt < itmax && ((fabs(f - g) >= TINY) || (q[1] != 1.0)));
return (1.0 - factor * f);
}
}
double InGammaQ(double a, double x)
{
return(1.0 - InGamma(a, x));
}
double InGammaP(double a, double x)
{
return(InGamma(a, x));
}
double
InBeta(double a, double b, double x)
/* =======================================================================
* Evaluates the incomplete beta function.
* NOTE: use a > 0.0, b > 0.0 and 0.0 <= x <= 1.0
*
* The algorithm used to evaluate the incomplete beta function is based on
* equation 26.5.8 in the Handbook of Mathematical Functions, Abramowitz
* and Stegum (editors). The absolute error is less than 1e-10 for all x
* between 0 and 1.
* =======================================================================
*/
{
double t, factor, f, g, c, p[3], q[3];
int swap;
long n;
if (x > (a + 1.0) / (a + b + 1.0)) { /* to accelerate convergence */
swap = 1; /* complement x and swap a & b */
x = 1.0 - x;
t = a;
a = b;
b = t;
}
else /* do nothing */
swap = 0;
if (x > 0)
factor = exp(a * log(x) + b * log(1.0 - x) - LogBeta(a,b)) / a;
else
factor = 0.0;
p[0] = 0.0;
q[0] = 1.0;
p[1] = 1.0;
q[1] = 1.0;
f = p[1] / q[1];
n = 0;
do { /* recursively generate the continued */
g = f; /* fraction 'f' until two consecutive */
n++; /* values are small */
if ((n % 2) > 0) {
t = (double) (n - 1) / 2;
c = -(a + t) * (a + b + t) * x / ((a + n - 1.0) * (a + n));
}
else {
t = (double) n / 2;
c = t * (b - t) * x / ((a + n - 1.0) * (a + n));
}
p[2] = p[1] + c * p[0];
q[2] = q[1] + c * q[0];
if (q[2] != 0.0) { /* rescale to avoid overflow */
p[0] = p[1] / q[2];
q[0] = q[1] / q[2];
p[1] = p[2] / q[2];
q[1] = 1.0;
f = p[1];
}
if (n > 300) /* DLT */
{
printf(" WARNING989: Maximum iterations in InBeta\n");
break;
}
} while ((fabs(f - g) >= TINY) || (q[1] != 1.0));
if (swap)
return (1.0 - factor * f);
else
return (factor * f);
}
|