Repository: commons-math Updated Branches: refs/heads/master 8b129cc4b -> 08986d79d
Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/08986d79 Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/08986d79 Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/08986d79 Branch: refs/heads/master Commit: 08986d79d821c2237ac16f881556e348b8aee9ca Parents: 8b129cc Author: Gilles <[email protected]> Authored: Sun May 28 02:30:38 2017 +0200 Committer: Gilles <[email protected]> Committed: Sun May 28 02:30:38 2017 +0200 ---------------------------------------------------------------------- .../apache/commons/math4/distribution/GammaDistribution.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/08986d79/src/main/java/org/apache/commons/math4/distribution/GammaDistribution.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math4/distribution/GammaDistribution.java b/src/main/java/org/apache/commons/math4/distribution/GammaDistribution.java index 218c230..5aa27cc 100644 --- a/src/main/java/org/apache/commons/math4/distribution/GammaDistribution.java +++ b/src/main/java/org/apache/commons/math4/distribution/GammaDistribution.java @@ -54,7 +54,7 @@ public class GammaDistribution extends AbstractRealDistribution { * The constant value of * {@code shape / scale * sqrt(e / (2 * pi * (shape + g + 0.5))) / L(shape)}, * where {@code L(shape)} is the Lanczos approximation returned by - * {@link Gamma#lanczos(double)}. This prefactor is used in + * {@link LanczosApproximation#value(double)}. This prefactor is used in * {@link #density(double)}, when no overflow occurs with the natural * calculation. */ @@ -63,7 +63,7 @@ public class GammaDistribution extends AbstractRealDistribution { * The constant value of * {@code log(shape / scale * sqrt(e / (2 * pi * (shape + g + 0.5))) / L(shape))}, * where {@code L(shape)} is the Lanczos approximation returned by - * {@link Gamma#lanczos(double)}. This prefactor is used in + * {@link LanczosApproximation#value(double)}. This prefactor is used in * {@link #logDensity(double)}, when no overflow occurs with the natural * calculation. */ @@ -72,7 +72,7 @@ public class GammaDistribution extends AbstractRealDistribution { * The constant value of * {@code shape * sqrt(e / (2 * pi * (shape + g + 0.5))) / L(shape)}, * where {@code L(shape)} is the Lanczos approximation returned by - * {@link Gamma#lanczos(double)}. This prefactor is used in + * {@link LanczosApproximation#value(double)}. This prefactor is used in * {@link #density(double)}, when overflow occurs with the natural * calculation. */ @@ -81,7 +81,7 @@ public class GammaDistribution extends AbstractRealDistribution { * The constant value of * {@code log(shape * sqrt(e / (2 * pi * (shape + g + 0.5))) / L(shape))}, * where {@code L(shape)} is the Lanczos approximation returned by - * {@link Gamma#lanczos(double)}. This prefactor is used in + * {@link LanczosApproximation#value(double)}. This prefactor is used in * {@link #logDensity(double)}, when overflow occurs with the natural * calculation. */
