MATH-881
Removed useless method. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1400010 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4a3a3eba60
commit
a355d8c20a
|
@ -73,9 +73,4 @@ public abstract class AbstractMultivariateRealDistribution
|
|||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public double probability(double[] x) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,17 +29,6 @@ import org.apache.commons.math3.exception.NotStrictlyPositiveException;
|
|||
* @since 3.1
|
||||
*/
|
||||
public interface MultivariateRealDistribution {
|
||||
/**
|
||||
* For a random variable {@code X} whose values are distributed according to
|
||||
* this distribution, this method returns {@code P(X = x)}. In other words,
|
||||
* this method represents the probability mass function (PMF) for the
|
||||
* distribution.
|
||||
*
|
||||
* @param x Point at which the PMF is evaluated.
|
||||
* @return the value of the probability mass function at point {@code x}.
|
||||
*/
|
||||
double probability(double[] x);
|
||||
|
||||
/**
|
||||
* Returns the probability density function (PDF) of this distribution
|
||||
* evaluated at the specified point {@code x}. In general, the PDF is the
|
||||
|
|
Loading…
Reference in New Issue