source: trunk/yat/statistics/PearsonDistance.cc @ 683

Last change on this file since 683 was 683, checked in by Jari Häkkinen, 16 years ago

Addresses #153. Clean up of code.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1// $Id: PearsonDistance.cc 683 2006-10-11 22:20:36Z 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 "PearsonDistance.h"
25#include "AveragerPair.h"
26#include "AveragerPairWeighted.h"
27#include "yat/utility/vector.h"
28
29namespace theplu{
30namespace yat{
31namespace statistics{
32
33  double PearsonDistance::operator()(const utility::vector& x, 
34                                     const utility::vector& y) const
35  {
36    AveragerPair ap;
37    ap.add_values(x,y);
38    return 1-ap.correlation();
39  }
40
41  double PearsonDistance::operator()(const utility::vector& x, 
42                                     const utility::vector& y, 
43                                     const utility::vector& wx, 
44                                     const utility::vector& wy) const
45  {
46    AveragerPairWeighted ap;
47    ap.add_values(x,y,wx, wy);
48    return 1-ap.correlation();   
49  }
50
51}}} // of namespace statistics, yat, and theplu
Note: See TracBrowser for help on using the repository browser.