1 | // $Id: Distance.cc 675 2006-10-10 12:08:45Z jari $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) The authors contributing to this file. |
---|
5 | |
---|
6 | This file is part of the yat library, http://lev.thep.lu.se/trac/yat |
---|
7 | |
---|
8 | The yat library is free software; you can redistribute it and/or |
---|
9 | modify it under the terms of the GNU General Public License as |
---|
10 | published by the Free Software Foundation; either version 2 of the |
---|
11 | License, or (at your option) any later version. |
---|
12 | |
---|
13 | The yat library is distributed in the hope that it will be useful, |
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with this program; if not, write to the Free Software |
---|
20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
21 | 02111-1307, USA. |
---|
22 | */ |
---|
23 | |
---|
24 | #include "yat/statistics/Distance.h" |
---|
25 | |
---|
26 | #include "yat/classifier/DataLookup1D.h" |
---|
27 | #include "yat/classifier/utility.h" |
---|
28 | #include "yat/utility/vector.h" |
---|
29 | |
---|
30 | namespace theplu{ |
---|
31 | namespace statistics{ |
---|
32 | |
---|
33 | double Distance::operator()(const classifier::DataLookup1D& x, |
---|
34 | const classifier::DataLookup1D& y) const |
---|
35 | { |
---|
36 | utility::vector a; |
---|
37 | classifier::convert(x,a); |
---|
38 | utility::vector b; |
---|
39 | classifier::convert(y,b); |
---|
40 | return this->operator()(a,b); |
---|
41 | } |
---|
42 | |
---|
43 | |
---|
44 | double Distance::operator()(const classifier::DataLookup1D& x, |
---|
45 | const classifier::DataLookup1D& y, |
---|
46 | const classifier::DataLookup1D& wx, |
---|
47 | const classifier::DataLookup1D& wy) const |
---|
48 | { |
---|
49 | utility::vector a; |
---|
50 | classifier::convert(x,a); |
---|
51 | utility::vector b; |
---|
52 | classifier::convert(y,b); |
---|
53 | utility::vector c; |
---|
54 | classifier::convert(wx,c); |
---|
55 | utility::vector d; |
---|
56 | classifier::convert(wy,d); |
---|
57 | return this->operator()(a,b,c,d); |
---|
58 | } |
---|
59 | |
---|
60 | |
---|
61 | }} // of namespace statistics and namespace theplu |
---|
62 | |
---|
63 | |
---|