680 |
11 Oct 06 |
jari |
1 |
#ifndef _theplu_yat_classifier_utility_ |
680 |
11 Oct 06 |
jari |
2 |
#define _theplu_yat_classifier_utility_ |
581 |
04 May 06 |
markus |
3 |
|
616 |
31 Aug 06 |
jari |
// $Id$ |
616 |
31 Aug 06 |
jari |
5 |
|
675 |
10 Oct 06 |
jari |
6 |
/* |
2119 |
12 Dec 09 |
peter |
Copyright (C) 2006 Jari Häkkinen, Markus Ringnér |
4359 |
23 Aug 23 |
peter |
Copyright (C) 2007 Peter Johansson |
4359 |
23 Aug 23 |
peter |
Copyright (C) 2008 Jari Häkkinen, Peter Johansson |
1883 |
31 Mar 09 |
peter |
Copyright (C) 2009 Peter Johansson |
675 |
10 Oct 06 |
jari |
11 |
|
1437 |
25 Aug 08 |
peter |
This file is part of the yat library, http://dev.thep.lu.se/yat |
675 |
10 Oct 06 |
jari |
13 |
|
675 |
10 Oct 06 |
jari |
The yat library is free software; you can redistribute it and/or |
675 |
10 Oct 06 |
jari |
modify it under the terms of the GNU General Public License as |
1486 |
09 Sep 08 |
jari |
published by the Free Software Foundation; either version 3 of the |
675 |
10 Oct 06 |
jari |
License, or (at your option) any later version. |
675 |
10 Oct 06 |
jari |
18 |
|
675 |
10 Oct 06 |
jari |
The yat library is distributed in the hope that it will be useful, |
675 |
10 Oct 06 |
jari |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
675 |
10 Oct 06 |
jari |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
675 |
10 Oct 06 |
jari |
General Public License for more details. |
675 |
10 Oct 06 |
jari |
23 |
|
675 |
10 Oct 06 |
jari |
You should have received a copy of the GNU General Public License |
1487 |
10 Sep 08 |
jari |
along with yat. If not, see <http://www.gnu.org/licenses/>. |
675 |
10 Oct 06 |
jari |
26 |
*/ |
675 |
10 Oct 06 |
jari |
27 |
|
581 |
04 May 06 |
markus |
28 |
namespace theplu { |
680 |
11 Oct 06 |
jari |
29 |
namespace yat { |
581 |
04 May 06 |
markus |
30 |
|
616 |
31 Aug 06 |
jari |
31 |
namespace utility { |
1120 |
21 Feb 08 |
peter |
32 |
class Vector; |
581 |
04 May 06 |
markus |
33 |
} |
581 |
04 May 06 |
markus |
34 |
|
581 |
04 May 06 |
markus |
35 |
namespace classifier { |
581 |
04 May 06 |
markus |
36 |
|
581 |
04 May 06 |
markus |
37 |
class DataLookup1D; |
779 |
05 Mar 07 |
peter |
38 |
class DataLookupWeighted1D; |
581 |
04 May 06 |
markus |
39 |
|
581 |
04 May 06 |
markus |
40 |
/// |
616 |
31 Aug 06 |
jari |
/// Converts a DataLookup1D to a utility::vector |
581 |
04 May 06 |
markus |
42 |
/// |
1883 |
31 Mar 09 |
peter |
/// \relatesalso DataLookup1D |
1883 |
31 Mar 09 |
peter |
44 |
/// |
1120 |
21 Feb 08 |
peter |
45 |
void convert(const DataLookup1D&, utility::Vector&); |
581 |
04 May 06 |
markus |
46 |
|
779 |
05 Mar 07 |
peter |
47 |
/// |
779 |
05 Mar 07 |
peter |
/// Converts a DataLookupWeighted1D to two utility::vector |
779 |
05 Mar 07 |
peter |
49 |
/// |
1883 |
31 Mar 09 |
peter |
/// \relatesalso DataLookupWeighted1D |
1883 |
31 Mar 09 |
peter |
51 |
/// |
1120 |
21 Feb 08 |
peter |
52 |
void convert(const DataLookupWeighted1D&, utility::Vector& value, |
1120 |
21 Feb 08 |
peter |
53 |
utility::Vector& weight); |
779 |
05 Mar 07 |
peter |
54 |
|
680 |
11 Oct 06 |
jari |
55 |
}}} // of namespace classifier, yat, and theplu |
581 |
04 May 06 |
markus |
56 |
|
581 |
04 May 06 |
markus |
57 |
#endif |