Fix javadoc issues - had to use CSS to simulate nested <sup> tags
This commit is contained in:
parent
d06517ad50
commit
a5b47638d4
|
@ -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}.
|
||||
*
|
||||
|
|
|
@ -45,7 +45,7 @@ public class Erf {
|
|||
/**
|
||||
* Returns the error function.
|
||||
*
|
||||
* <p>erf(x) = 2/√π <sub>0</sub>∫<sup>x</sup> e<sup>-t<sup>2</sup></sup>dt </p>
|
||||
* <p>erf(x) = 2/√π <sub>0</sub>∫<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/√π <sub>x</sub>∫<sup>∞</sup> e<sup>-t<sup>2</sup></sup>dt
|
||||
* <p>erfc(x) = 2/√π <sub>x</sub>∫<sup>∞</sup> e<sup>-t<span style="position: relative; top: -.5em">2</span></sup>dt
|
||||
* <br>
|
||||
* = 1 - {@link #erf(double) erf(x)} </p>
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue