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 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_05) on Thu Sep 09 20:36:13 PDT 2004 -->
<TITLE>
Probability (Colt 1.2.0 - API Specification)
</TITLE>
<META NAME="keywords" CONTENT="cern.jet.stat.Probability class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Probability (Colt 1.2.0 - API Specification)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Probability.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Colt 1.2.0</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../cern/jet/stat/Gamma.html" title="class in cern.jet.stat"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="Probability.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
cern.jet.stat</FONT>
<BR>
Class Probability</H2>
<PRE>
<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><A HREF="../../../cern/jet/math/Constants.html" title="class in cern.jet.math">cern.jet.math.Constants</A>
<IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>cern.jet.stat.Probability</B>
</PRE>
<HR>
<DL>
<DT>public class <B>Probability</B><DT>extends <A HREF="../../../cern/jet/math/Constants.html" title="class in cern.jet.math">Constants</A></DL>
<P>
Custom tailored numerical integration of certain probability distributions.
<p>
<b>Implementation:</b>
<dt>
Some code taken and adapted from the <A HREF="http://www.sci.usq.edu.au/staff/leighb/graph/Top.html">Java 2D Graph Package 2.4</A>,
which in turn is a port from the <A HREF="http://people.ne.mediaone.net/moshier/index.html#Cephes">Cephes 2.2</A> Math Library (C).
Most Cephes code (missing from the 2D Graph Package) directly ported.
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>0.91, 08-Dec-99</DD>
</DL>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#beta(double, double, double)">beta</A></B>(double a,
double b,
double x)</CODE>
<BR>
Returns the area from zero to <tt>x</tt> under the beta density
function.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#betaComplemented(double, double, double)">betaComplemented</A></B>(double a,
double b,
double x)</CODE>
<BR>
Returns the area under the right hand tail (from <tt>x</tt> to
infinity) of the beta density function.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#binomial(int, int, double)">binomial</A></B>(int k,
int n,
double p)</CODE>
<BR>
Returns the sum of the terms <tt>0</tt> through <tt>k</tt> of the Binomial
probability density.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#binomialComplemented(int, int, double)">binomialComplemented</A></B>(int k,
int n,
double p)</CODE>
<BR>
Returns the sum of the terms <tt>k+1</tt> through <tt>n</tt> of the Binomial
probability density.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#chiSquare(double, double)">chiSquare</A></B>(double v,
double x)</CODE>
<BR>
Returns the area under the left hand tail (from 0 to <tt>x</tt>)
of the Chi square probability density function with
<tt>v</tt> degrees of freedom.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#chiSquareComplemented(double, double)">chiSquareComplemented</A></B>(double v,
double x)</CODE>
<BR>
Returns the area under the right hand tail (from <tt>x</tt> to
infinity) of the Chi square probability density function
with <tt>v</tt> degrees of freedom.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#errorFunction(double)">errorFunction</A></B>(double x)</CODE>
<BR>
Returns the error function of the normal distribution; formerly named <tt>erf</tt>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#errorFunctionComplemented(double)">errorFunctionComplemented</A></B>(double a)</CODE>
<BR>
Returns the complementary Error function of the normal distribution; formerly named <tt>erfc</tt>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#gamma(double, double, double)">gamma</A></B>(double a,
double b,
double x)</CODE>
<BR>
Returns the integral from zero to <tt>x</tt> of the gamma probability
density function.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#gammaComplemented(double, double, double)">gammaComplemented</A></B>(double a,
double b,
double x)</CODE>
<BR>
Returns the integral from <tt>x</tt> to infinity of the gamma
probability density function:
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#negativeBinomial(int, int, double)">negativeBinomial</A></B>(int k,
int n,
double p)</CODE>
<BR>
Returns the sum of the terms <tt>0</tt> through <tt>k</tt> of the Negative Binomial Distribution.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#negativeBinomialComplemented(int, int, double)">negativeBinomialComplemented</A></B>(int k,
int n,
double p)</CODE>
<BR>
Returns the sum of the terms <tt>k+1</tt> to infinity of the Negative
Binomial distribution.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#normal(double)">normal</A></B>(double a)</CODE>
<BR>
Returns the area under the Normal (Gaussian) probability density
function, integrated from minus infinity to <tt>x</tt> (assumes mean is zero, variance is one).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#normal(double, double, double)">normal</A></B>(double mean,
double variance,
double x)</CODE>
<BR>
Returns the area under the Normal (Gaussian) probability density
function, integrated from minus infinity to <tt>x</tt>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#normalInverse(double)">normalInverse</A></B>(double y0)</CODE>
<BR>
Returns the value, <tt>x</tt>, for which the area under the
Normal (Gaussian) probability density function (integrated from
minus infinity to <tt>x</tt>) is equal to the argument <tt>y</tt> (assumes mean is zero, variance is one); formerly named <tt>ndtri</tt>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#poisson(int, double)">poisson</A></B>(int k,
double mean)</CODE>
<BR>
Returns the sum of the first <tt>k</tt> terms of the Poisson distribution.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#poissonComplemented(int, double)">poissonComplemented</A></B>(int k,
double mean)</CODE>
<BR>
Returns the sum of the terms <tt>k+1</tt> to <tt>Infinity</tt> of the Poisson distribution.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#studentT(double, double)">studentT</A></B>(double k,
double t)</CODE>
<BR>
Returns the integral from minus infinity to <tt>t</tt> of the Student-t
distribution with <tt>k > 0</tt> degrees of freedom.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static double</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../cern/jet/stat/Probability.html#studentTInverse(double, int)">studentTInverse</A></B>(double alpha,
int size)</CODE>
<BR>
Returns the value, <tt>t</tt>, for which the area under the
Student-t probability density function (integrated from
minus infinity to <tt>t</tt>) is equal to <tt>1-alpha/2</tt>.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang">equals</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#hashCode()" title="class or interface in java.lang">hashCode</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#toString()" title="class or interface in java.lang">toString</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="beta(double, double, double)"><!-- --></A><H3>
beta</H3>
<PRE>
public static double <B>beta</B>(double a,
double b,
double x)</PRE>
<DL>
<DD>Returns the area from zero to <tt>x</tt> under the beta density
function.
<pre>
x
- -
| (a+b) | | a-1 b-1
P(x) = ---------- | t (1-t) dt
- - | |
| (a) | (b) -
0
</pre>
This function is identical to the incomplete beta
integral function <tt>Gamma.incompleteBeta(a, b, x)</tt>.
The complemented function is
<tt>1 - P(1-x) = Gamma.incompleteBeta( b, a, x )</tt>;
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="betaComplemented(double, double, double)"><!-- --></A><H3>
betaComplemented</H3>
<PRE>
public static double <B>betaComplemented</B>(double a,
double b,
double x)</PRE>
<DL>
<DD>Returns the area under the right hand tail (from <tt>x</tt> to
infinity) of the beta density function.
This function is identical to the incomplete beta
integral function <tt>Gamma.incompleteBeta(b, a, x)</tt>.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="binomial(int, int, double)"><!-- --></A><H3>
binomial</H3>
<PRE>
public static double <B>binomial</B>(int k,
int n,
double p)</PRE>
<DL>
<DD>Returns the sum of the terms <tt>0</tt> through <tt>k</tt> of the Binomial
probability density.
<pre>
k
-- ( n ) j n-j
> ( ) p (1-p)
-- ( j )
j=0
</pre>
The terms are not summed directly; instead the incomplete
beta integral is employed, according to the formula
<p>
<tt>y = binomial( k, n, p ) = Gamma.incompleteBeta( n-k, k+1, 1-p )</tt>.
<p>
All arguments must be positive,
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>k</CODE> - end term.<DD><CODE>n</CODE> - the number of trials.<DD><CODE>p</CODE> - the probability of success (must be in <tt>(0.0,1.0)</tt>).</DL>
</DD>
</DL>
<HR>
<A NAME="binomialComplemented(int, int, double)"><!-- --></A><H3>
binomialComplemented</H3>
<PRE>
public static double <B>binomialComplemented</B>(int k,
int n,
double p)</PRE>
<DL>
<DD>Returns the sum of the terms <tt>k+1</tt> through <tt>n</tt> of the Binomial
probability density.
<pre>
n
-- ( n ) j n-j
> ( ) p (1-p)
-- ( j )
j=k+1
</pre>
The terms are not summed directly; instead the incomplete
beta integral is employed, according to the formula
<p>
<tt>y = binomialComplemented( k, n, p ) = Gamma.incompleteBeta( k+1, n-k, p )</tt>.
<p>
All arguments must be positive,
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>k</CODE> - end term.<DD><CODE>n</CODE> - the number of trials.<DD><CODE>p</CODE> - the probability of success (must be in <tt>(0.0,1.0)</tt>).</DL>
</DD>
</DL>
<HR>
<A NAME="chiSquare(double, double)"><!-- --></A><H3>
chiSquare</H3>
<PRE>
public static double <B>chiSquare</B>(double v,
double x)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the area under the left hand tail (from 0 to <tt>x</tt>)
of the Chi square probability density function with
<tt>v</tt> degrees of freedom.
<pre>
inf.
-
1 | | v/2-1 -t/2
P( x | v ) = ----------- | t e dt
v/2 - | |
2 | (v/2) -
x
</pre>
where <tt>x</tt> is the Chi-square variable.
<p>
The incomplete gamma integral is used, according to the
formula
<p>
<tt>y = chiSquare( v, x ) = incompleteGamma( v/2.0, x/2.0 )</tt>.
<p>
The arguments must both be positive.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>v</CODE> - degrees of freedom.<DD><CODE>x</CODE> - integration end point.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="chiSquareComplemented(double, double)"><!-- --></A><H3>
chiSquareComplemented</H3>
<PRE>
public static double <B>chiSquareComplemented</B>(double v,
double x)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the area under the right hand tail (from <tt>x</tt> to
infinity) of the Chi square probability density function
with <tt>v</tt> degrees of freedom.
<pre>
inf.
-
1 | | v/2-1 -t/2
P( x | v ) = ----------- | t e dt
v/2 - | |
2 | (v/2) -
x
</pre>
where <tt>x</tt> is the Chi-square variable.
The incomplete gamma integral is used, according to the
formula
<tt>y = chiSquareComplemented( v, x ) = incompleteGammaComplement( v/2.0, x/2.0 )</tt>.
The arguments must both be positive.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>v</CODE> - degrees of freedom.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="errorFunction(double)"><!-- --></A><H3>
errorFunction</H3>
<PRE>
public static double <B>errorFunction</B>(double x)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the error function of the normal distribution; formerly named <tt>erf</tt>.
The integral is
<pre>
x
-
2 | | 2
erf(x) = -------- | exp( - t ) dt.
sqrt(pi) | |
-
0
</pre>
<b>Implementation:</b>
For <tt>0 <= |x| < 1, erf(x) = x * P4(x**2)/Q5(x**2)</tt>; otherwise
<tt>erf(x) = 1 - erfc(x)</tt>.
<p>
Code adapted from the <A HREF="http://www.sci.usq.edu.au/staff/leighb/graph/Top.html">Java 2D Graph Package 2.4</A>,
which in turn is a port from the <A HREF="http://people.ne.mediaone.net/moshier/index.html#Cephes">Cephes 2.2</A> Math Library (C).
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="errorFunctionComplemented(double)"><!-- --></A><H3>
errorFunctionComplemented</H3>
<PRE>
public static double <B>errorFunctionComplemented</B>(double a)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the complementary Error function of the normal distribution; formerly named <tt>erfc</tt>.
<pre>
1 - erf(x) =
inf.
-
2 | | 2
erfc(x) = -------- | exp( - t ) dt
sqrt(pi) | |
-
x
</pre>
<b>Implementation:</b>
For small x, <tt>erfc(x) = 1 - erf(x)</tt>; otherwise rational
approximations are computed.
<p>
Code adapted from the <A HREF="http://www.sci.usq.edu.au/staff/leighb/graph/Top.html">Java 2D Graph Package 2.4</A>,
which in turn is a port from the <A HREF="http://people.ne.mediaone.net/moshier/index.html#Cephes">Cephes 2.2</A> Math Library (C).
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>a</CODE> - the argument to the function.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="gamma(double, double, double)"><!-- --></A><H3>
gamma</H3>
<PRE>
public static double <B>gamma</B>(double a,
double b,
double x)</PRE>
<DL>
<DD>Returns the integral from zero to <tt>x</tt> of the gamma probability
density function.
<pre>
x
b -
a | | b-1 -at
y = ----- | t e dt
- | |
| (b) -
0
</pre>
The incomplete gamma integral is used, according to the
relation
<tt>y = Gamma.incompleteGamma( b, a*x )</tt>.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>a</CODE> - the paramater a (alpha) of the gamma distribution.<DD><CODE>b</CODE> - the paramater b (beta, lambda) of the gamma distribution.<DD><CODE>x</CODE> - integration end point.</DL>
</DD>
</DL>
<HR>
<A NAME="gammaComplemented(double, double, double)"><!-- --></A><H3>
gammaComplemented</H3>
<PRE>
public static double <B>gammaComplemented</B>(double a,
double b,
double x)</PRE>
<DL>
<DD>Returns the integral from <tt>x</tt> to infinity of the gamma
probability density function:
<pre>
inf.
b -
a | | b-1 -at
y = ----- | t e dt
- | |
| (b) -
x
</pre>
The incomplete gamma integral is used, according to the
relation
<p>
y = Gamma.incompleteGammaComplement( b, a*x ).
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>a</CODE> - the paramater a (alpha) of the gamma distribution.<DD><CODE>b</CODE> - the paramater b (beta, lambda) of the gamma distribution.<DD><CODE>x</CODE> - integration end point.</DL>
</DD>
</DL>
<HR>
<A NAME="negativeBinomial(int, int, double)"><!-- --></A><H3>
negativeBinomial</H3>
<PRE>
public static double <B>negativeBinomial</B>(int k,
int n,
double p)</PRE>
<DL>
<DD>Returns the sum of the terms <tt>0</tt> through <tt>k</tt> of the Negative Binomial Distribution.
<pre>
k
-- ( n+j-1 ) n j
> ( ) p (1-p)
-- ( j )
j=0
</pre>
In a sequence of Bernoulli trials, this is the probability
that <tt>k</tt> or fewer failures precede the <tt>n</tt>-th success.
<p>
The terms are not computed individually; instead the incomplete
beta integral is employed, according to the formula
<p>
<tt>y = negativeBinomial( k, n, p ) = Gamma.incompleteBeta( n, k+1, p )</tt>.
All arguments must be positive,
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>k</CODE> - end term.<DD><CODE>n</CODE> - the number of trials.<DD><CODE>p</CODE> - the probability of success (must be in <tt>(0.0,1.0)</tt>).</DL>
</DD>
</DL>
<HR>
<A NAME="negativeBinomialComplemented(int, int, double)"><!-- --></A><H3>
negativeBinomialComplemented</H3>
<PRE>
public static double <B>negativeBinomialComplemented</B>(int k,
int n,
double p)</PRE>
<DL>
<DD>Returns the sum of the terms <tt>k+1</tt> to infinity of the Negative
Binomial distribution.
<pre>
inf
-- ( n+j-1 ) n j
> ( ) p (1-p)
-- ( j )
j=k+1
</pre>
The terms are not computed individually; instead the incomplete
beta integral is employed, according to the formula
<p>
y = negativeBinomialComplemented( k, n, p ) = Gamma.incompleteBeta( k+1, n, 1-p ).
All arguments must be positive,
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>k</CODE> - end term.<DD><CODE>n</CODE> - the number of trials.<DD><CODE>p</CODE> - the probability of success (must be in <tt>(0.0,1.0)</tt>).</DL>
</DD>
</DL>
<HR>
<A NAME="normal(double)"><!-- --></A><H3>
normal</H3>
<PRE>
public static double <B>normal</B>(double a)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the area under the Normal (Gaussian) probability density
function, integrated from minus infinity to <tt>x</tt> (assumes mean is zero, variance is one).
<pre>
x
-
1 | | 2
normal(x) = --------- | exp( - t /2 ) dt
sqrt(2pi) | |
-
-inf.
= ( 1 + erf(z) ) / 2
= erfc(z) / 2
</pre>
where <tt>z = x/sqrt(2)</tt>.
Computation is via the functions <tt>errorFunction</tt> and <tt>errorFunctionComplement</tt>.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="normal(double, double, double)"><!-- --></A><H3>
normal</H3>
<PRE>
public static double <B>normal</B>(double mean,
double variance,
double x)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the area under the Normal (Gaussian) probability density
function, integrated from minus infinity to <tt>x</tt>.
<pre>
x
-
1 | | 2
normal(x) = --------- | exp( - (t-mean) / 2v ) dt
sqrt(2pi*v)| |
-
-inf.
</pre>
where <tt>v = variance</tt>.
Computation is via the functions <tt>errorFunction</tt>.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>mean</CODE> - the mean of the normal distribution.<DD><CODE>variance</CODE> - the variance of the normal distribution.<DD><CODE>x</CODE> - the integration limit.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="normalInverse(double)"><!-- --></A><H3>
normalInverse</H3>
<PRE>
public static double <B>normalInverse</B>(double y0)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the value, <tt>x</tt>, for which the area under the
Normal (Gaussian) probability density function (integrated from
minus infinity to <tt>x</tt>) is equal to the argument <tt>y</tt> (assumes mean is zero, variance is one); formerly named <tt>ndtri</tt>.
<p>
For small arguments <tt>0 < y < exp(-2)</tt>, the program computes
<tt>z = sqrt( -2.0 * log(y) )</tt>; then the approximation is
<tt>x = z - log(z)/z - (1/z) P(1/z) / Q(1/z)</tt>.
There are two rational functions P/Q, one for <tt>0 < y < exp(-32)</tt>
and the other for <tt>y</tt> up to <tt>exp(-2)</tt>.
For larger arguments,
<tt>w = y - 0.5</tt>, and <tt>x/sqrt(2pi) = w + w**3 R(w**2)/S(w**2))</tt>.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="poisson(int, double)"><!-- --></A><H3>
poisson</H3>
<PRE>
public static double <B>poisson</B>(int k,
double mean)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the sum of the first <tt>k</tt> terms of the Poisson distribution.
<pre>
k j
-- -m m
> e --
-- j!
j=0
</pre>
The terms are not summed directly; instead the incomplete
gamma integral is employed, according to the relation
<p>
<tt>y = poisson( k, m ) = Gamma.incompleteGammaComplement( k+1, m )</tt>.
The arguments must both be positive.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>k</CODE> - number of terms.<DD><CODE>mean</CODE> - the mean of the poisson distribution.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="poissonComplemented(int, double)"><!-- --></A><H3>
poissonComplemented</H3>
<PRE>
public static double <B>poissonComplemented</B>(int k,
double mean)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the sum of the terms <tt>k+1</tt> to <tt>Infinity</tt> of the Poisson distribution.
<pre>
inf. j
-- -m m
> e --
-- j!
j=k+1
</pre>
The terms are not summed directly; instead the incomplete
gamma integral is employed, according to the formula
<p>
<tt>y = poissonComplemented( k, m ) = Gamma.incompleteGamma( k+1, m )</tt>.
The arguments must both be positive.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>k</CODE> - start term.<DD><CODE>mean</CODE> - the mean of the poisson distribution.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="studentT(double, double)"><!-- --></A><H3>
studentT</H3>
<PRE>
public static double <B>studentT</B>(double k,
double t)
throws <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></PRE>
<DL>
<DD>Returns the integral from minus infinity to <tt>t</tt> of the Student-t
distribution with <tt>k > 0</tt> degrees of freedom.
<pre>
t
-
| |
- | 2 -(k+1)/2
| ( (k+1)/2 ) | ( x )
---------------------- | ( 1 + --- ) dx
- | ( k )
sqrt( k pi ) | ( k/2 ) |
| |
-
-inf.
</pre>
Relation to incomplete beta integral:
<p>
<tt>1 - studentT(k,t) = 0.5 * Gamma.incompleteBeta( k/2, 1/2, z )</tt>
where <tt>z = k/(k + t**2)</tt>.
<p>
Since the function is symmetric about <tt>t=0</tt>, the area under the
right tail of the density is found by calling the function
with <tt>-t</tt> instead of <tt>t</tt>.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>k</CODE> - degrees of freedom.<DD><CODE>t</CODE> - integration end point.
<DT><B>Throws:</B>
<DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/ArithmeticException.html" title="class or interface in java.lang">ArithmeticException</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="studentTInverse(double, int)"><!-- --></A><H3>
studentTInverse</H3>
<PRE>
public static double <B>studentTInverse</B>(double alpha,
int size)</PRE>
<DL>
<DD>Returns the value, <tt>t</tt>, for which the area under the
Student-t probability density function (integrated from
minus infinity to <tt>t</tt>) is equal to <tt>1-alpha/2</tt>.
The value returned corresponds to usual Student t-distribution lookup
table for <tt>t<sub>alpha[size]</sub></tt>.
<p>
The function uses the studentT function to determine the return
value iteratively.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>alpha</CODE> - probability<DD><CODE>size</CODE> - size of data set</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Probability.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Colt 1.2.0</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../cern/jet/stat/Gamma.html" title="class in cern.jet.stat"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="Probability.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size=-1 >Jump to the <a target=_top href=http://dsd.lbl.gov/~hoschek/colt >Colt Homepage</a>
</BODY>
</HTML>
|