Changeset 2223 for trunk/yat/classifier/MatrixLookup.h
- Timestamp:
- Mar 19, 2010, 4:30:02 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/MatrixLookup.h
r2119 r2223 8 8 Copyright (C) 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér 9 9 Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson 10 Copyright (C) 2009 Peter Johansson10 Copyright (C) 2009, 2010 Peter Johansson 11 11 12 12 This file is part of the yat library, http://dev.thep.lu.se/yat … … 27 27 28 28 #include "yat/utility/Container2DIterator.h" 29 #include "yat/utility/deprecate.h" 29 30 #include "yat/utility/Index.h" 30 31 #include "yat/utility/iterator_traits.h" … … 150 151 /// undefined. 151 152 /// 153 /// \deprecated Provided for backgroundColor compatibility with 154 /// the 0.6 API. Use MatrixLookup(const utility::Matrix&, const 155 /// utility::Index&, const utility::Index&) 156 /// 152 157 MatrixLookup(const utility::Matrix& matrix, 153 158 const utility::Index& index, 154 const bool row_vectors) ;159 const bool row_vectors) YAT_DEPRECATE; 155 160 156 161 /// … … 215 220 /// undefined. 216 221 /// 222 /// \deprecated Provided for backgroundColor compatibility with 223 /// the 0.6 API. Use MatrixLookup(const MatrixLookup&, const 224 /// utility::Index&, const utility::Index&) 225 /// 217 226 MatrixLookup(const MatrixLookup& ml, const utility::Index&, 218 227 const bool row_vectors); … … 228 237 /// @brief The istream constructor. 229 238 /// 230 /// In construction the underlying matrix is created from 231 /// stream. The MatrixLookup will be owner of the underlying 239 /// In construction the underlying utility::Matrix is created from 240 /// the stream using utility::Matrix(std::istream&). The 241 /// constructed MatrixLookup will be owner of the underlying 232 242 /// matrix. 233 243 /// 234 /// @see matrix(istream&) for details.244 /// @see Matrix(istream&) for details. 235 245 /// 236 246 MatrixLookup(std::istream&, char sep='\0');
Note: See TracChangeset
for help on using the changeset viewer.