1 %> Vector Comparer - Normalized Xor
3 %> Measure of diversity. Vectors must be of same size.
6 %> L. I. Kuncheva, Combining Pattern Classifiers: Methods and Algorithms. Wiley, 2004.
9 methods(Access=
protected)
10 function z = do_test(o, v1, v2)
11 z = xor(v1, v2)/numel(v1);
17 o.classtitle = 'Normalized Xor';
Paired Vector Comparer base class.