Fixed javadoc typos.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141432 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2004-08-22 01:42:58 +00:00
parent ab89221197
commit ea75da05a0
7 changed files with 15 additions and 15 deletions

View File

@ -22,7 +22,7 @@ import java.math.BigDecimal;
* Interface defining a real-valued matrix with basic algebraic operations, using
* BigDecimal representations for the entries.
*
* @version $Revision: 1.4 $ $Date: 2004/07/11 04:49:24 $
* @version $Revision: 1.5 $ $Date: 2004/08/22 01:42:58 $
*/
public interface BigMatrix {
@ -68,7 +68,7 @@ public interface BigMatrix {
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

View File

@ -39,7 +39,7 @@ import java.math.BigDecimal;
* explicitly invoke <code>LUDecompose()</code> to recompute the decomposition
* before using any of the methods above.
*
* @version $Revision: 1.3 $ $Date: 2004/07/11 04:49:24 $
* @version $Revision: 1.4 $ $Date: 2004/08/22 01:42:58 $
*/
public class BigMatrixImpl implements BigMatrix, Serializable {
@ -239,7 +239,7 @@ public class BigMatrixImpl implements BigMatrix, Serializable {
}
/**
* 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

View File

@ -18,7 +18,7 @@ package org.apache.commons.math.linear;
/**
* Interface defining a real-valued matrix with basic algebraic operations
* @version $Revision: 1.19 $ $Date: 2004/06/07 03:26:31 $
* @version $Revision: 1.20 $ $Date: 2004/08/22 01:42:58 $
*/
public interface RealMatrix {
@ -64,7 +64,7 @@ public interface RealMatrix {
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

View File

@ -38,7 +38,7 @@ import java.io.Serializable;
* explicitly invoke <code>LUDecompose()</code> to recompute the decomposition
* before using any of the methods above.
*
* @version $Revision: 1.25 $ $Date: 2004/06/23 16:26:17 $
* @version $Revision: 1.26 $ $Date: 2004/08/22 01:42:58 $
*/
public class RealMatrixImpl implements RealMatrix, Serializable {
@ -202,7 +202,7 @@ public class RealMatrixImpl implements RealMatrix, Serializable {
}
/**
* 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

View File

@ -33,9 +33,9 @@ import java.util.TreeMap;
* 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: 1.26 $ $Date: 2004/08/12 15:33:39 $
* @version $Revision: 1.27 $ $Date: 2004/08/22 01:42:58 $
*/
public class Frequency implements Serializable {
@ -407,7 +407,7 @@ public class Frequency implements Serializable {
}
/**
* 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.

View File

@ -23,7 +23,7 @@ package org.apache.commons.math.stat.univariate;
* This interface is designed to be used for calculating statistics that can be computed in
* one pass through the data without storing the full array of sample values.
*
* @version $Revision: 1.18 $ $Date: 2004/07/10 17:09:08 $
* @version $Revision: 1.19 $ $Date: 2004/08/22 01:42:58 $
*/
public interface StorelessUnivariateStatistic extends UnivariateStatistic {
@ -70,7 +70,7 @@ public interface StorelessUnivariateStatistic extends UnivariateStatistic {
long getN();
/**
* Clears all the internal state of the Statistic
* Clears the internal state of the Statistic
*/
void clear();

View File

@ -44,7 +44,7 @@ import org.apache.commons.math.stat.univariate.AbstractUnivariateStatistic;
* <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
@ -60,7 +60,7 @@ import org.apache.commons.math.stat.univariate.AbstractUnivariateStatistic;
* one of the threads invokes the <code>increment()</code> or
* <code>clear()</code> method, it must be synchronized externally.
*
* @version $Revision: 1.23 $ $Date: 2004/07/11 18:39:08 $
* @version $Revision: 1.24 $ $Date: 2004/08/22 01:42:58 $
*/
public class Percentile extends AbstractUnivariateStatistic implements Serializable {