yat/classifier/utility.h

Code
Comments
Other
Rev Date Author Line
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 4 // $Id$
616 31 Aug 06 jari 5
675 10 Oct 06 jari 6 /*
2119 12 Dec 09 peter 7   Copyright (C) 2006 Jari Häkkinen, Markus Ringnér
4359 23 Aug 23 peter 8   Copyright (C) 2007 Peter Johansson
4359 23 Aug 23 peter 9   Copyright (C) 2008 Jari Häkkinen, Peter Johansson
1883 31 Mar 09 peter 10   Copyright (C) 2009 Peter Johansson
675 10 Oct 06 jari 11
1437 25 Aug 08 peter 12   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 14   The yat library is free software; you can redistribute it and/or
675 10 Oct 06 jari 15   modify it under the terms of the GNU General Public License as
1486 09 Sep 08 jari 16   published by the Free Software Foundation; either version 3 of the
675 10 Oct 06 jari 17   License, or (at your option) any later version.
675 10 Oct 06 jari 18
675 10 Oct 06 jari 19   The yat library is distributed in the hope that it will be useful,
675 10 Oct 06 jari 20   but WITHOUT ANY WARRANTY; without even the implied warranty of
675 10 Oct 06 jari 21   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
675 10 Oct 06 jari 22   General Public License for more details.
675 10 Oct 06 jari 23
675 10 Oct 06 jari 24   You should have received a copy of the GNU General Public License
1487 10 Sep 08 jari 25   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 41   /// Converts a DataLookup1D to a utility::vector
581 04 May 06 markus 42   ///
1883 31 Mar 09 peter 43   /// \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 48   /// Converts a DataLookupWeighted1D to two utility::vector
779 05 Mar 07 peter 49   ///
1883 31 Mar 09 peter 50   /// \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