| |||||||||||||||||
![]() |
![]() |
![]() |
|||||||||||||||
Visit Tutorials below: |
Mahalanobis Distance Mahalanobis distance is also called quadratic distance. It measures the separation of two groups of objects. Suppose we have two groups with means Formula The data of the two groups must have the same number of variables (the same number of columns) but not necessarily to have the same number of data (each group may have different number of rows). In Matlab, the code is as follow: The code above requires computation of Covariance matrix, which code is given below For example: Suppose we have two groups of data, each of group consists of two variables (x, y). The scattered plot of data is shown below.
First, we center the data on the arithmetic mean of each variable.
Covariance matrix of group
It produces covariance matrices for group 1 and 2 as follow
The pooled covariance matrix of the two groups is computed as weighted average of the covariance matrices. The weighted average takes this form
The pooled covariance is computed using weighted average (10/15)*Covariance group 1 + (5/15)*Covariance group 2 yields
The Mahalanobis distance is simply quadratic multiplication of mean difference and inverse of pooled covariance matrix.
To perform the quadratic multiplication, check again the formula of Mahalanobis distance above. When you get mean difference, transpose it, and multiply it by inverse pooled covariance. After that, multiply the result with the mean difference again and you take the square root. The final result of Mahalanobis distance is
Spreadsheet example (MS Excel) of this Mahalanobis computation can be downloaded here.
This tutorial is copyrighted. Preferable reference for this tutorial is Teknomo, Kardi. Similarity Measurement. http:\\people.revoledu.com\kardi\ tutorial\Similarity\
|
|||||||||||||||
|
||||||||||||||||
© 2006 Kardi Teknomo. All Rights Reserved. Designed by CNV Media |
||||||||||||||||