Resolved some href " issues in Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140896 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aa3e2e9ef4
commit
1999928282
|
@ -61,7 +61,7 @@ import java.util.ArrayList;
|
|||
import org.apache.commons.math.stat.Univariate;
|
||||
|
||||
/**
|
||||
* Represents an <a href=http://random.mat.sbg.ac.at/~ste/dipl/node11.html>
|
||||
* Represents an <a href="http://random.mat.sbg.ac.at/~ste/dipl/node11.html">
|
||||
* empirical probability distribution</a> -- a probability distribution derived
|
||||
* from observed data without making any assumptions about the functional form
|
||||
* of the population distribution that the data come from.<p>
|
||||
|
@ -81,7 +81,7 @@ import org.apache.commons.math.stat.Univariate;
|
|||
* generate random values "like" those in the input file -- i.e., the values
|
||||
* generated will follow the distribution of the values in the file.
|
||||
* @author Phil Steitz
|
||||
* @version $Revision: 1.2 $
|
||||
* @version $Revision: 1.3 $
|
||||
*/
|
||||
public interface EmpiricalDistribution {
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
|
|||
/**
|
||||
* Implements <code>EmpiricalDistribution</code> interface using
|
||||
* what amounts to the
|
||||
* <a href=http://nedwww.ipac.caltech.edu/level5/March02/Silverman/Silver2_6.html>
|
||||
* <a href="http://nedwww.ipac.caltech.edu/level5/March02/Silverman/Silver2_6.html">
|
||||
* Variable Kernel Method</a> with Gaussian smoothing:<p>
|
||||
* <strong>Digesting the input file</strong>
|
||||
* <ol><li>Pass the file once to compute min and max.</li>
|
||||
|
@ -90,7 +90,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
|
|||
* </ol></p>
|
||||
*
|
||||
* @author Phil Steitz
|
||||
* @version $Revision: 1.3 $
|
||||
* @version $Revision: 1.4 $
|
||||
*/
|
||||
public class EmpiricalDistributionImpl implements Serializable,EmpiricalDistribution {
|
||||
|
||||
|
|
|
@ -55,14 +55,14 @@ package org.apache.commons.math;
|
|||
|
||||
/**
|
||||
* Interfaces for the following test statistics <ul>
|
||||
* <li><a href = http://www.itl.nist.gov/div898/handbook/eda/section3/eda35f.htm>
|
||||
* <li><a href ="http://www.itl.nist.gov/div898/handbook/eda/section3/eda35f.htm">
|
||||
* Chi-Square</a></li>
|
||||
* <li><a href="http://www.itl.nist.gov/div898/handbook/eda/section3/eda352.htm">
|
||||
* One Sample t-test</a></li>
|
||||
* </ul>
|
||||
*
|
||||
* @author Phil Steitz
|
||||
* @version $Revision: 1.2 $ $Date: 2003/05/26 17:29:36 $
|
||||
* @version $Revision: 1.3 $ $Date: 2003/06/06 03:38:03 $
|
||||
*
|
||||
*/
|
||||
public interface TestStatistic {
|
||||
|
|
|
@ -60,7 +60,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
|
|||
/**
|
||||
* Implements the following test statistics <ul>
|
||||
* <li>
|
||||
* <a href = http://www.itl.nist.gov/div898/handbook/eda/section3/eda35f.htm>
|
||||
* <a href ="http://www.itl.nist.gov/div898/handbook/eda/section3/eda35f.htm">
|
||||
* Chi-Square</a>
|
||||
* </li>
|
||||
* <li>
|
||||
|
@ -69,7 +69,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
|
|||
* </li>
|
||||
* </ul>
|
||||
* @author Phil Steitz
|
||||
* @version $Revision: 1.3 $ $Date: 2003/05/29 20:35:44 $
|
||||
* @version $Revision: 1.4 $ $Date: 2003/06/06 03:38:03 $
|
||||
*
|
||||
*/
|
||||
public class TestStatisticImpl implements TestStatistic {
|
||||
|
|
Loading…
Reference in New Issue