public class UnknownDistribution extends java.lang.Object implements Distribution, CentralMomentsSettable
Distribution.Type| Constructor and Description |
|---|
UnknownDistribution() |
| Modifier and Type | Method and Description |
|---|---|
Matrix |
getMean()
This method returns the first central moment, i.e.
|
Matrix |
getRandomRealization()
This method draws a random realization from the distribution.
|
Distribution.Type |
getType()
This method returns the type of the distribution.
|
Matrix |
getVariance()
This method returns the second central moment, i.e.
|
boolean |
isMultivariate()
This method returns true if the GaussianFunction instance is multivariate.
|
boolean |
isParametric()
This method returns true if the distribution is parametric or false otherwise.
|
void |
setMean(Matrix mean)
This method sets the mean vector of the random variable.
|
void |
setVariance(Matrix variance)
This method sets the variance-covariance matrix of the random variable.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitisUnivariatepublic boolean isMultivariate()
DistributionisMultivariate in interface Distributionpublic Matrix getMean()
CentralMomentsGettablegetMean in interface CentralMomentsGettablepublic Matrix getVariance()
CentralMomentsGettablegetVariance in interface CentralMomentsGettablepublic Distribution.Type getType()
DistributiongetType in interface Distributionpublic void setMean(Matrix mean)
CentralMomentsSettablesetMean in interface CentralMomentsSettablemean - a Matrix instancepublic void setVariance(Matrix variance)
CentralMomentsSettablesetVariance in interface CentralMomentsSettablevariance - a Matrix instancepublic boolean isParametric()
DistributionisParametric in interface Distributionpublic Matrix getRandomRealization()
DistributiongetRandomRealization in interface Distribution