Fix javadoc issues - had to use CSS to simulate nested <sup> tags

This commit is contained in:
Ray DeCampo 2017-05-13 09:52:59 -04:00
parent d06517ad50
commit a5b47638d4
2 changed files with 3 additions and 4 deletions

View File

@ -46,7 +46,6 @@ import org.apache.commons.math4.util.FastMath;
* indicates that unless otherwise stated in the code, all FORTRAN functions in
* this library are license free. Since no such notice appears in the code these
* functions can safely be ported to Commons-Math.
* </p>
*/
public class Beta {
/** Maximum allowed numerical error. */
@ -379,7 +378,7 @@ public class Beta {
}
/**
* Returns the value of log B(p, q) for 0 x 1 and p, q > 0. Based on the
* Returns the value of {@code log B(p, q)} for {@code 0 x 1} and {@code p, q > 0}. Based on the
* <em>NSWC Library of Mathematics Subroutines</em> implementation,
* {@code DBETLN}.
*

View File

@ -45,7 +45,7 @@ public class Erf {
/**
* Returns the error function.
*
* <p>erf(x) = 2/&radic;&pi; <sub>0</sub>&int;<sup>x</sup> e<sup>-t<sup>2</sup></sup>dt </p>
* <p>erf(x) = 2/&radic;&pi; <sub>0</sub>&int;<sup>x</sup> e<sup>-t<span style="position: relative; top: -.5em">2</span></sup>dt </p>
*
* <p>This implementation computes erf(x) using the
* {@link Gamma#regularizedGammaP(double, double, double, int) regularized gamma function},
@ -73,7 +73,7 @@ public class Erf {
/**
* Returns the complementary error function.
*
* <p>erfc(x) = 2/&radic;&pi; <sub>x</sub>&int;<sup>&infin;</sup> e<sup>-t<sup>2</sup></sup>dt
* <p>erfc(x) = 2/&radic;&pi; <sub>x</sub>&int;<sup>&infin;</sup> e<sup>-t<span style="position: relative; top: -.5em">2</span></sup>dt
* <br>
* = 1 - {@link #erf(double) erf(x)} </p>
*