Repository: commons-math Updated Branches: refs/heads/master 6b95a3a87 -> 9c1c9ab1b
Bad HTML fixups Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/9c1c9ab1 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/9c1c9ab1 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/9c1c9ab1 Branch: refs/heads/master Commit: 9c1c9ab1bf99cc36778652541afd9b530fb63b40 Parents: 6b95a3a Author: Sebb <[email protected]> Authored: Tue May 9 16:22:02 2017 +0100 Committer: Sebb <[email protected]> Committed: Tue May 9 16:22:02 2017 +0100 ---------------------------------------------------------------------- .../org/apache/commons/math4/special/BesselJ.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/9c1c9ab1/src/main/java/org/apache/commons/math4/special/BesselJ.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/special/BesselJ.java b/src/main/java/org/apache/commons/math4/special/BesselJ.java index b677939..9b41479 100644 --- a/src/main/java/org/apache/commons/math4/special/BesselJ.java +++ b/src/main/java/org/apache/commons/math4/special/BesselJ.java @@ -177,15 +177,15 @@ public class BesselJ * {@link #getnVals()} is the number of values among those returned by {@link #getnVals()} * that can be considered accurate. * </p><ul> - * <li>nVals < 0: An argument is out of range. For example, nb <= 0, alpha - * < 0 or > 1, or x is too large. In this case, b(0) is set to zero, the + * <li>{@code nVals < 0}: An argument is out of range. For example, {@code nb <= 0}, + * {@code alpha < 0 or > 1}, or x is too large. In this case, b(0) is set to zero, the * remainder of the b-vector is not calculated, and nVals is set to * MIN(nb,0) - 1 so that nVals != nb.</li> - * <li>nb > nVals > 0: Not all requested function values could be calculated + * <li>{@code nb > nVals > 0}: Not all requested function values could be calculated * accurately. This usually occurs because nb is much larger than abs(x). In - * this case, b(n) is calculated to the desired accuracy for n < nVals, but - * precision is lost for nVals < n <= nb. If b(n) does not vanish for n > - * nVals (because it is too small to be represented), and b(n)/b(nVals) = + * this case, b(n) is calculated to the desired accuracy for {@code n < nVals}, but + * precision is lost for {@code nVals < n <= nb}. If b(n) does not vanish for + * {@code n > nVals} (because it is too small to be represented), and b(n)/b(nVals) = * \(10^{-k}\), then only the first NSIG-k significant figures of b(n) can be * trusted.</li></ul> */ @@ -234,10 +234,10 @@ public class BesselJ * </p> * @param x non-negative real argument for which J's are to be calculated * @param alpha fractional part of order for which J's or exponentially - * scaled J's (\(J\cdot e^{x}\)) are to be calculated. 0 <= alpha < 1.0. - * @param nb integer number of functions to be calculated, nb > 0. The first + * scaled J's (\(J\cdot e^{x}\)) are to be calculated. {@code 0 <= alpha < 1.0} + * @param nb integer number of functions to be calculated, {@code nb > 0}. The first * function calculated is of order alpha, and the last is of order - * nb - 1 + alpha. + * {@code nb - 1 + alpha}. * @return BesselJResult a vector of the functions * \(J_{alpha}(x)\) through \(J_{nb-1+alpha}(x)\), or the corresponding exponentially * scaled functions and an integer output variable indicating possible errors
