Changeset 1268 for trunk/yat/classifier
- Timestamp:
- Apr 9, 2008, 4:13:49 PM (15 years ago)
- Location:
- trunk/yat/classifier
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/DataLookup1D.h
r1193 r1268 45 45 /// @brief Class for general vector view. 46 46 /// 47 class DataLookup1D 48 { 49 50 public: 47 class DataLookup1D 48 { 49 public: 51 50 /// 'Read Only' iterator 52 51 typedef utility::StrideIterator< … … 58 57 /// Constructor. 59 58 /// 59 /// \param m MatrixLookup to look into 60 60 /// @param row_vector if true DataLookup1D is looking into a 61 61 /// row of MatrixLookup, otherwise looking into a 62 62 /// column. @param index which row/column to look into. 63 63 /// 64 DataLookup1D(const MatrixLookup& , const size_t index,64 DataLookup1D(const MatrixLookup& m, const size_t index, 65 65 const bool row_vector); 66 66 … … 133 133 const bool owner_; 134 134 135 135 }; 136 136 137 137 /// -
trunk/yat/classifier/DataLookupWeighted1D.h
r1193 r1268 61 61 /// Constructor. 62 62 /// 63 /// \param m MatrixLookupWeighted to look into 63 64 /// @param row_vector if true (default) DataLookup1D is 64 65 /// looking into a row of MatrixLookupWeighted, otherwise looking into 65 66 /// a column. @param index which row/column to look into. 66 67 /// 67 DataLookupWeighted1D(const MatrixLookupWeighted& , const size_t index,68 DataLookupWeighted1D(const MatrixLookupWeighted& m, const size_t index, 68 69 const bool row_vector); 69 70
Note: See TracChangeset
for help on using the changeset viewer.