jax.scipy.stats.multivariate_normal.pdfΒΆ
-
jax.scipy.stats.multivariate_normal.pdf(x, mean, cov)[source]ΒΆ Multivariate normal probability density function.
LAX-backend implementation of
pdf().Original docstring below.
- Parameters
x (array_like) β Quantiles, with the last axis of x denoting the components.
mean (array_like, optional) β Mean of the distribution (default zero)
cov (array_like, optional) β Covariance matrix of the distribution (default one)
allow_singular (bool, optional) β Whether to allow a singular covariance matrix. (Default: False)
- Returns
pdf β Probability density function evaluated at x
- Return type
ndarray or scalar