Computing Pairwise Distances and Metrics is a Matlab script for Mathematics scripts design by Dahua Lin.
It runs on following operating system: Windows / Linux / Mac OS / BSD / Solaris.
Computing Pairwise Distances and Metrics - Compute pairwise distance or metric values between two sets of vectors
Publisher review:Computing Pairwise Distances and Metrics - Compute pairwise distance or metric values between two sets of vectors slmetric_pw.h is an m-function to compute metrics between two sets of vectors in pairwise way. Main Features: - It supports about 20 metric types, including Euclidean distance (L2), Normalized Correlation, City-Block distance (L1), Quadratic distance, Minkowski distance, Hamming distance, Histogram Intersect, Chi-square distance, and information theoretical divergences, etc. - It is highly optimized by taking full advantage of vectorized computation. For some distances that are difficult to be fully vectorized, like city-block distance, C-mex implementation is offered. - It is easy to use with simple syntax. - It is sufficiently documented. You can type in "help slmetric_pw" to see the help on its usage.Examples are available to show how to invoke the function.Background:slmetric_pw.h is an important function in the core module of sltoolbox, which is a large set of functions for accomplishing many statistical learning tasks.I am now developing the second version of sltoolbox. Considering that some of the core functions can be applied to a much wider domain in technical computing, and that a long time is needed to make a new version of the whole toolbox ready, I would like to release some of these functions independently so that more fields can benefit from them.The function has been substantially rewritten based on new features of MATLAB 2007a with enhanced efficiency and stability.Examples:% prepare sample matrixX1 = rand(10, 100);X2 = rand(10, 150);% compute the euclidean distances (L2) between the samples in X1 and X2M = slmetric_pw(X1, X2, 'eucdist');% compute the eucidean distances between the samples in X1 in a pairwise mannerM = slmetric_pw(X1, X1, 'eucdist');% compute the city block distances (L1)M = slmetric_pw(X1, X2, 'cityblk'); % compute the normalize correlationsM = slmetric_pw(X1, X2, 'nrmcorr');% compute hamming distancesM = slmetric_pw(X1, X2, 'hamming', 0.5);M2 = slmetric_pw((X1 > 0.5), (X2 > 0.5), 'hamming');assert(isequal(M, M2));% compute weighted squared distances with user-supplied weightsweights = rand(10, 1);M = slmetric_pw(X1, X2, 'wsqdist', weights);% compute quadratic distances (x-y)^T * Q (x-y)Q = rand(10, 10);M = slmetric_pw(X1, X2, 'quaddiff', Q);% compute Minkowski distance of order 3 M = slmetric_pw(X1, X2, 'minkowski', 3);
Operating system:Windows / Linux / Mac OS / BSD / Solaris