Class MultivariateGaussian
Object
org.apache.spark.ml.stat.distribution.MultivariateGaussian
- All Implemented Interfaces:
- Serializable
This class provides basic functionality for a Multivariate Gaussian (Normal) Distribution. In
 the event that the covariance matrix is singular, the density will be computed in a
 reduced dimensional subspace under which the distribution is supported.
 (see 
 here)
 
param: mean The mean vector of the distribution param: cov The covariance matrix of the distribution
- See Also:
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Constructor Details- 
MultivariateGaussian
 
- 
- 
Method Details- 
cov
- 
logpdfReturns the log-density of this multivariate Gaussian at given point, x- Parameters:
- x- (undocumented)
- Returns:
- (undocumented)
 
- 
mean
- 
pdfReturns density of this multivariate Gaussian at given point, x- Parameters:
- x- (undocumented)
- Returns:
- (undocumented)
 
 
-