Removed tab.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1535290 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
721444f232
commit
cffd29da6b
|
@ -153,7 +153,7 @@ public class NormalDistribution extends AbstractRealDistribution {
|
||||||
|
|
||||||
/** {@inheritDoc} */
|
/** {@inheritDoc} */
|
||||||
@Override
|
@Override
|
||||||
public double logDensity(double x) {
|
public double logDensity(double x) {
|
||||||
final double x0 = x - mean;
|
final double x0 = x - mean;
|
||||||
final double x1 = x0 / standardDeviation;
|
final double x1 = x0 / standardDeviation;
|
||||||
return -0.5 * x1 * x1 - logStandardDeviationPlusHalfLog2Pi;
|
return -0.5 * x1 * x1 - logStandardDeviationPlusHalfLog2Pi;
|
||||||
|
|
Loading…
Reference in New Issue