This commit is contained in:
Gilles Sadowski 2020-06-03 11:58:29 +02:00
parent 5f9bbadbb2
commit d5ffaf27c7
5 changed files with 8 additions and 8 deletions

View File

@ -43,7 +43,7 @@ public class GaussIntegratorFactory {
* The call to the
* {@link GaussIntegrator#integrate(org.apache.commons.math4.analysis.UnivariateFunction)
* integrate} method will perform an integration on the interval
* \([0, +\infinity)\): the computed value is the improper integral of
* \([0, +\infty)\): the computed value is the improper integral of
* \(e^{-x} f(x)\)
* where \(f(x)\) is the function passed to the
* {@link SymmetricGaussIntegrator#integrate(org.apache.commons.math4.analysis.UnivariateFunction)
@ -131,7 +131,7 @@ public class GaussIntegratorFactory {
* The call to the
* {@link SymmetricGaussIntegrator#integrate(org.apache.commons.math4.analysis.UnivariateFunction)
* integrate} method will perform a weighted integration on the interval
* \([-\infinity, +\infinity]\): the computed value is the improper integral of
* \([-\infty, +\infty]\): the computed value is the improper integral of
* \(e^{-x^2}f(x)\)
* where \(f(x)\) is the function passed to the
* {@link SymmetricGaussIntegrator#integrate(org.apache.commons.math4.analysis.UnivariateFunction)

View File

@ -143,7 +143,7 @@ public class Kurtosis extends AbstractStorelessUnivariateStatistic implements S
return moment.getN();
}
/* UinvariateStatistic Approach */
/* UnivariateStatistic Approach */
/**
* Returns the kurtosis of the entries in the specified portion of the

View File

@ -92,7 +92,7 @@ public class SemiVariance extends AbstractUnivariateStatistic implements Seriali
* property and default (Downside) <code>varianceDirection</code> property.
*
* @param biasCorrected setting for bias correction - true means
* bias will be corrected and is equivalent to using the non-argument
* bias will be corrected and is equivalent to using the "no arg"
* constructor
*/
public SemiVariance(final boolean biasCorrected) {
@ -115,7 +115,7 @@ public class SemiVariance extends AbstractUnivariateStatistic implements Seriali
* property and the specified <code>Direction</code> property.
*
* @param corrected setting for bias correction - true means
* bias will be corrected and is equivalent to using the non-argument
* bias will be corrected and is equivalent to using the "no arg"
* constructor
*
* @param direction setting for the direction of the SemiVariance

View File

@ -118,7 +118,7 @@ public class Variance extends AbstractStorelessUnivariateStatistic implements Se
* property.
*
* @param isBiasCorrected setting for bias correction - true means
* bias will be corrected and is equivalent to using the non-argument
* bias will be corrected and is equivalent to using the "no arg"
* constructor
*/
public Variance(boolean isBiasCorrected) {

View File

@ -862,7 +862,7 @@ public class KolmogorovSmirnovTest {
}
/**
* Computes \( 1 + 2 \sum_{i=1}^\infinity (-1)^i e^{-2 i^2 t^2} \) stopping when successive partial
* Computes \( 1 + 2 \sum_{i=1}^\infty (-1)^i e^{-2 i^2 t^2} \) stopping when successive partial
* sums are within {@code tolerance} of one another, or when {@code maxIterations} partial sums
* have been computed. If the sum does not converge before {@code maxIterations} iterations a
* {@link TooManyIterationsException} is thrown.
@ -951,7 +951,7 @@ public class KolmogorovSmirnovTest {
* {@link #kolmogorovSmirnovStatistic(double[], double[])} for the definition of \(D_{n,m}\).
* <p>
* Specifically, what is returned is \(1 - k(d \sqrt{mn / (m + n)})\) where \(k(t) = 1 + 2
* \sum_{i=1}^\infinity (-1)^i e^{-2 i^2 t^2}\). See {@link #ksSum(double, double, int)} for
* \sum_{i=1}^\infty (-1)^i e^{-2 i^2 t^2}\). See {@link #ksSum(double, double, int)} for
* details on how convergence of the sum is determined.
* </p>
*