mirror of
https://github.com/apache/commons-math.git
synced 2025-02-06 01:59:13 +00:00
Adding documentation for Contributors. Adding xsl stylesheets to render xdoc in browser and css to style content, this makes testing documentation additions easier without rendering the entire site. Simply open up xdoc in browser to see what it will look like after rendering. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141018 13f79535-47bb-0310-9956-ffa450edef68
42 lines
2.2 KiB
XML
42 lines
2.2 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet type="text/xsl" href="./xdoc.xsl"?>
|
|
<!-- $Revision: 1.5 $ $Date: 2003/11/15 18:38:16 $ -->
|
|
<document url="special.html">
|
|
<properties>
|
|
<title>The Commons Math User Guide - Special Functions</title>
|
|
<author email="phil@steitz.com">Phil Steitz</author>
|
|
</properties>
|
|
<body>
|
|
<section name="5 Special Functions">
|
|
<subsection name="5.1 Overview" href="overview">
|
|
<p>
|
|
The special functions portion of Commons-Math contains several useful functions not
|
|
provided by <code>java.lang.Math</code>. These functions mostly serve as building blocks
|
|
for other portions of Commons-Math but, as others may find them useful as stand-alone
|
|
methods, these special functions were included as part of the Commons-Math public API.
|
|
</p>
|
|
</subsection>
|
|
<subsection name="5.2 Gamma functions" href="gamma">
|
|
<p>
|
|
<code>org.apache.commons.math.special.Gamma</code> contains several useful functions involving the Gamma Function.
|
|
<table>
|
|
<tr><th>Function</th><th>Method</th><th>Reference</th></tr>
|
|
<tr><td>Log Gamma</td><td>logGamma</td><td>See <a href="http://mathworld.wolfram.com/GammaFunction.html">Gamma Function</a> from MathWorld</td></tr>
|
|
<tr><td>Regularized Gamma</td><td>regularizedGammaP</td><td>See <a href="http://mathworld.wolfram.com/RegularizedGammaFunction.html">Regularized Gamma Function</a> from MathWorld</td></tr>
|
|
</table>
|
|
</p>
|
|
</subsection>
|
|
<subsection name="5.3 Beta funtions" href="beta">
|
|
<p>
|
|
<code>org.apache.commons.math.special.Beta</code> contains several useful functions involving the Beta Function.
|
|
<table>
|
|
<tr><th>Function</th><th>Method</th><th>Reference</th></tr>
|
|
<tr><td>Log Beta</td><td>logBeta</td><td>See <a href="http://mathworld.wolfram.com/BetaFunction.html">Beta Function</a> from MathWorld</td></tr>
|
|
<tr><td>Regularized Beta</td><td>regularizedBeta</td><td>See <a href="http://mathworld.wolfram.com/RegularizedBetaFunction.html">Regularized Beta Function</a> from MathWorld</td></tr>
|
|
</table>
|
|
</p>
|
|
</subsection>
|
|
</section>
|
|
</body>
|
|
</document>
|