Vector of length n containing the squared Mahalanobis distances
computed using only the observed variables for each row.
Data Types: single | double
p is the number of variables in the original data matrix.
Data Types: single | double
Vector of length n containing the number of observed variables
for each row.
Data Types: single | double
Specify optional comma-separated pairs of Name,Value arguments.
Name is the argument name and Value
is the corresponding value. Name must appear
inside single quotes (' ').
You can specify several name and value pair arguments in any order as
Name1,Value1,...,NameN,ValueN.
Example:
'method','chiMap'
, 'Y',Y
, 'Sigma',Sigma
Possible values are.
'pri' : principled EM rescaling (default),
d2_partial + (p - pobs).
'expScale' : expectation scaling,
d2_partial * (p / pobs).
'zMap' : standardization mapping,
p + sqrt(2*p) * ((d2_partial - pobs) ./ sqrt(2*pobs)).
'detMap' : determinant-based rescaling,
d2_partial * (p / pobs) * (g_full / g_obs)
This method requires input option 'Y' and input
option 'Sigma'.
'chiMap' : chi-square quantile mapping. Use the cdf and
inverse of the cdf of Chi2 distribution.
'betaMap' : Beta quantile mapping. Use the cdf and
inverse of the cdf of Beta distribution.
Example: 'method','chiMap'
Data Types: string scalar | char vector
n x p data matrix. This input is required only if
method='detMap'.
Example: 'Y',Y
Data Types: single | double
p x p covariance matrix. This input is required only if
method='detMap'.
Example: 'Sigma',Sigma
Data Types: single | double