Author: psteitz
Date: Sun Jun 12 05:56:32 2011
New Revision: 1134866
URL: http://svn.apache.org/viewvc?rev=1134866&view=rev
Log:
Fixed error in javadoc. JIRA: MATH-540.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
commons/proper/math/trunk/src/site/xdoc/changes.xml
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java?rev=1134866&r1=1134865&r2=1134866&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/AbstractIntegerDistribution.java
Sun Jun 12 05:56:32 2011
@@ -151,7 +151,7 @@ public abstract class AbstractIntegerDis
/**
* For a random variable {@code X} whose values are distributed according
* to this distribution, this method returns the largest {@code x}, such
- * that {@code P(X < x) < p}.
+ * that {@code P(X <= x) <= p}.
*
* @param p Desired probability.
* @return the largest {@code x} such that {@code P(X < x) <= p}.
Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=1134866&r1=1134865&r2=1134866&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Sun Jun 12 05:56:32 2011
@@ -52,11 +52,15 @@ The <action> type attribute can be add,u
If the output is not quite correct, check for invisible trailing spaces!
-->
<release version="3.0" date="TBD" description="TBD">
- <action dev="psteitz" type="fix" due-to="Christopher Nix">
+ <action dev="psteitz" type="fix" issue="MATH-540">
+ Fixed error in javadoc describing Integer distribution inverse
cumulative
+ probability API.
+ </action>
+ <action dev="psteitz" type="fix" issue="MATH-582" due-to="Christopher
Nix">
Fixed error in javadoc describing the behavior of the Percentile
algorithm for
small percentiles in small datasets.
</action>
- <action dev="erans" type="add" due-to="Thomas Neidhart">
+ <action dev="erans" type="add" issue="MATH-485" due-to="Thomas Neidhart">
New "filter" package. Initial implementation of Kalman filter.
</action>
<action dev="luc" type="fix" issue="MATH-584" due-to="Randall Scarberry">