y = mvtpdf(X,C,nu)
returns the probability density function (pdf) of the multivariate t
distribution with the correlation matrix C and degrees of freedom
nu, evaluated at each row of X.
Evaluation points, specified as a 1-by-d
numeric vector or an n-by-d numeric matrix, where
d is the dimension of a single multivariate t
distribution and n is a positive scalar integer. The rows of
X correspond to observations (or points), and the columns
correspond to variables (or coordinates).
Data Types: single | double
Correlation matrix, specified as a d-by-d
symmetric, positive definite matrix, where d is the number of columns
in X. If the diagonal elements of C are not
all 1 (that is, if C is a covariance matrix rather than a correlation
matrix), then the mvtpdf function rescales C
to correlation form. The function does not rescale the evaluation points
X.
Data Types: single | double
Degrees of freedom of the multivariate t distribution,
specified as a positive scalar or a vector of positive scalars with length equal to the
number of rows in X. If nu is a positive
scalar, the mvtpdf function expands nu
into a vector with the same number of rows as X.