source: trunk/c++_tools/classifier/DataLookupWeighted1D.cc @ 675

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

References #83. Changing project name to yat. Compilation will fail in this revision.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1// $Id: DataLookupWeighted1D.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/classifier/DataLookupWeighted1D.h"
25#include "yat/classifier/MatrixLookupWeighted.h"
26
27#include <cassert>
28#include <iostream>
29#include <iomanip>
30
31namespace theplu {
32namespace classifier {
33
34  DataLookupWeighted1D::DataLookupWeighted1D(const MatrixLookupWeighted& m, 
35                                             const size_t i, 
36                             const bool row_vector)
37    : column_vector_(!row_vector), index_(i), matrix_(&m), owner_(false)
38  {
39    assert( !column_vector_ || i<m.columns());
40    assert( column_vector_ || i<m.rows());
41  }
42 
43
44  DataLookupWeighted1D::DataLookupWeighted1D(const size_t size, 
45                                             const double value,
46                                             const double weight)
47    : column_vector_(false), index_(0), owner_(true)
48  {
49    matrix_ = new MatrixLookupWeighted(1,size,value,weight);
50  }
51
52 
53  DataLookupWeighted1D::DataLookupWeighted1D(const DataLookupWeighted1D& other)
54    : column_vector_(other.column_vector_), index_(other.index_),
55      matrix_(other.matrix_), owner_(false)
56  {
57  }
58
59  DataLookupWeighted1D::~DataLookupWeighted1D()
60  {
61    if (owner_)
62      delete matrix_;
63  }
64
65
66}} // of namespace classifier and namespace theplu
Note: See TracBrowser for help on using the repository browser.