Changeset 720 for trunk/yat/microarray
- Timestamp:
- Dec 26, 2006, 7:21:36 PM (16 years ago)
- Location:
- trunk/yat/microarray
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/microarray/DataSet.cc
r688 r720 1 1 // $Id$ 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 */ 2 23 3 24 #include "DataSet.h" … … 56 77 } 57 78 79 80 const classifier::MatrixLookup& DataSet::data(void) const 81 { 82 return data_; 83 } 84 85 86 const std::vector<std::string>& DataSet::probe(void) const 87 { 88 return probe_; 89 } 90 91 92 const classifier::Target& DataSet::target(void) const 93 { 94 return target_; 95 } 96 58 97 }}} // end of namespace microarray, yat, and theplu -
trunk/yat/microarray/DataSet.h
r706 r720 57 57 58 58 /// 59 /// @return data 60 /// 61 const classifier::MatrixLookup& data(void) const; 62 63 /// 59 64 /// @return probes 60 65 /// 61 inline const std::vector<std::string>& probe(void) const { return probe_; }66 const std::vector<std::string>& probe(void) const; 62 67 63 68 /// 64 69 /// @return target 65 70 /// 66 inline const classifier::Target& target(void) const { return target_; } 67 68 /// 69 /// @return data 70 /// 71 inline const classifier::MatrixLookup& data(void) const { return data_; } 71 const classifier::Target& target(void) const; 72 72 73 73 private:
Note: See TracChangeset
for help on using the changeset viewer.