From 08986d79d821c2237ac16f881556e348b8aee9ca Mon Sep 17 00:00:00 2001 From: Gilles Date: Sun, 28 May 2017 02:30:38 +0200 Subject: [PATCH] Javadoc. --- .../commons/math4/distribution/GammaDistribution.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 218c230a7..5aa27cc3a 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. */