You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ps...@apache.org on 2004/08/22 03:42:58 UTC

cvs commit: jakarta-commons/math/src/java/org/apache/commons/math/stat/univariate/rank Percentile.java

psteitz     2004/08/21 18:42:58

  Modified:    math/src/java/org/apache/commons/math/linear BigMatrix.java
                        BigMatrixImpl.java RealMatrix.java
                        RealMatrixImpl.java
               math/src/java/org/apache/commons/math/stat Frequency.java
               math/src/java/org/apache/commons/math/stat/univariate
                        StorelessUnivariateStatistic.java
               math/src/java/org/apache/commons/math/stat/univariate/rank
                        Percentile.java
  Log:
  Fixed javadoc typos.
  
  Revision  Changes    Path
  1.5       +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/linear/BigMatrix.java
  
  Index: BigMatrix.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/BigMatrix.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BigMatrix.java	11 Jul 2004 04:49:24 -0000	1.4
  +++ BigMatrix.java	22 Aug 2004 01:42:58 -0000	1.5
  @@ -68,7 +68,7 @@
       BigMatrix scalarMultiply(BigDecimal d);
       
       /**
  -     * Returns the result postmultiplying this by m.
  +     * Returns the result of postmultiplying this by m.
        *
        * @param m    matrix to postmultiply by
        * @return     this * m
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/linear/BigMatrixImpl.java
  
  Index: BigMatrixImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/BigMatrixImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BigMatrixImpl.java	11 Jul 2004 04:49:24 -0000	1.3
  +++ BigMatrixImpl.java	22 Aug 2004 01:42:58 -0000	1.4
  @@ -239,7 +239,7 @@
       }
       
       /**
  -     * Returns the result postmultiplying this by <code>m</code>.
  +     * Returns the result of postmultiplying this by <code>m</code>.
        * @param m    matrix to postmultiply by
        * @return     this*m
        * @throws     IllegalArgumentException
  
  
  
  1.20      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrix.java
  
  Index: RealMatrix.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrix.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- RealMatrix.java	7 Jun 2004 03:26:31 -0000	1.19
  +++ RealMatrix.java	22 Aug 2004 01:42:58 -0000	1.20
  @@ -64,7 +64,7 @@
       RealMatrix scalarMultiply(double d);
   
       /**
  -     * Returns the result postmultiplying this by m.
  +     * Returns the result of postmultiplying this by m.
        *
        * @param m    matrix to postmultiply by
        * @return     this * m
  
  
  
  1.26      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrixImpl.java
  
  Index: RealMatrixImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrixImpl.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- RealMatrixImpl.java	23 Jun 2004 16:26:17 -0000	1.25
  +++ RealMatrixImpl.java	22 Aug 2004 01:42:58 -0000	1.26
  @@ -202,7 +202,7 @@
       }
   
       /**
  -     * Returns the result postmultiplying this by <code>m</code>.
  +     * Returns the result of postmultiplying this by <code>m</code>.
        * @param m    matrix to postmultiply by
        * @return     this*m
        * @throws     IllegalArgumentException
  
  
  
  1.27      +3 -3      jakarta-commons/math/src/java/org/apache/commons/math/stat/Frequency.java
  
  Index: Frequency.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/stat/Frequency.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- Frequency.java	12 Aug 2004 15:33:39 -0000	1.26
  +++ Frequency.java	22 Aug 2004 01:42:58 -0000	1.27
  @@ -33,7 +33,7 @@
    * the same effect (similarly for arguments to <code>getCount,</code> etc.).
    * <p>
    * The values are ordered using the default (natural order), unless a  
  - * <code>Comparator</code>is supplied in the constructor.
  + * <code>Comparator</code> is supplied in the constructor.
    *
    * @version $Revision$ $Date$
    */
  @@ -407,7 +407,7 @@
       }
       
       /**
  -     * Returns the cumulative percentatge of values less than or equal to v
  +     * Returns the cumulative percentage of values less than or equal to v
        * (as a proportion between 0 and 1).
        * <p>
        * Returns 0 if v is not comparable to the values set.
  
  
  
  1.19      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/stat/univariate/StorelessUnivariateStatistic.java
  
  Index: StorelessUnivariateStatistic.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/stat/univariate/StorelessUnivariateStatistic.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- StorelessUnivariateStatistic.java	10 Jul 2004 17:09:08 -0000	1.18
  +++ StorelessUnivariateStatistic.java	22 Aug 2004 01:42:58 -0000	1.19
  @@ -70,7 +70,7 @@
       long getN();
   
       /**
  -     * Clears all the internal state of the Statistic
  +     * Clears the internal state of the Statistic
        */
       void clear();
   
  
  
  
  1.24      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/stat/univariate/rank/Percentile.java
  
  Index: Percentile.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/stat/univariate/rank/Percentile.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- Percentile.java	11 Jul 2004 18:39:08 -0000	1.23
  +++ Percentile.java	22 Aug 2004 01:42:58 -0000	1.24
  @@ -44,7 +44,7 @@
    * <p>
    * To compute percentiles, the data must be (totally) ordered.  Input arrays
    * are copied and then sorted using  {@link java.util.Arrays#sort(double[])}.
  - * The ordering used by <code>Arrays.sort(double[]</code> is the one determined
  + * The ordering used by <code>Arrays.sort(double[])</code> is the one determined
    * by {@link java.lang.Double#compareTo(Double)}.  This ordering makes 
    * <code>Double.NaN</code> larger than any other value (including 
    * <code>Double.POSITIVE_INFINITY</code>).  Therefore, for example, the median
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org