What is the difference between quadratic and mahalanobis distance with stratified covaraiance estimates when using classify

3 views (last 30 days)
Sorry for what may be a silly question but I'm very new to pattern recognition and am having trouble understanding matlabs classify function.
I have a training set for which I have performed bartlett's test for equality of covariance matrices with equal numbers of cases for each class. This returns a p of 0 which I understand to mean I should use stratified covariance estimates for each group.
classify offers two options with stratified covariance
mahalanobis — Uses Mahalanobis distances with stratified covariance estimates
Quadratic — Fits multivariate normal densities with covariance estimates stratified by group
Assuming equal priors what is the difference between performing a discriminant analysis using the mahalanobis and quadratic options? for my data the quadratic seems to perform better but I would like to understand why.

Accepted Answer

Siddharth Sundar
Siddharth Sundar on 29 Oct 2014
The first place I would look at when trying to get some details about the Math behind the implementation would be the references mentioned in the documentation for the classify function.
Wikipedia also provides some basic information about Quadratic Discriminant Analysis(the method that is chosen when the 'type' input to the classify function is 'quadratic') as seen here.
The Mahalanobis distance and its application in discriminant analysis is also talked about in this Wikipedia page. However, I would rely on the references mentioned in the documentation page for the details.
With respect to one of the options working better than the other, from experience, that depends completely on the data that you use.

More Answers (0)

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!