TANIMOTO_METRIC_CVIP
tanimoto_metric_cvip() - calculates the Tanimoto similarity metric between two feature vectors.
Contents
SYNTAX
d = tanimoto_metric_cvip( vector1, vector2)
Input Parameters include :
- vector1 - Feature vector 1. A numeric array of n elements.
- vector2 - Feature vector 2. A numeric array of n elements.
Output Parameters include :
- d - The Tanimoto similarity metric between vector1 and vector2
DESCRIPTION
This function calvulates the Tanimoto similarity measure between the two feature vectors given as input by the user.
Tanimoto metric is a similarity measure defined for vectors x and y as:
REFERENCE
1. Scott E Umbaugh. DIGITAL IMAGE PROCESSING AND ANALYSIS: Applications with MATLAB and CVIPtools, 3rd Edition.
EXAMPLE
% Input vectors vector1 = [1 3 4 2]; vector2 = [-3 3.2 sqrt(2) pi]; % Output tanimoto similarity metric d = tanimoto_metric_cvip( vector1, vector2)
d = 0.4355
CREDITS
Author: Mehrdad Alvandipour, March 2017
Copyright © 2017-2018 Scott
E Umbaugh
For updates visit CVIP Toolbox Website