Changeset 1192
- Timestamp:
- Feb 29, 2008, 8:09:32 PM (16 years ago)
- Location:
- trunk/yat/classifier
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/MatrixLookup.h
r1191 r1192 46 46 47 47 /// 48 /// @brief General view into utility:: matrix48 /// @brief General view into utility::Matrix 49 49 /// 50 50 /// MatrixLookups can be used to create lookups/views into matrices … … 71 71 /// constructors and assignments. 72 72 /// 73 /// \see MatrixLookupWeighted 74 /// 73 75 class MatrixLookup 74 76 { -
trunk/yat/classifier/MatrixLookupWeighted.h
r1170 r1192 54 54 /// element is associated to a weight. 55 55 /// 56 /// A MatrixLookupWeighted can be created directly from a matrix or57 /// from an 56 /// A MatrixLookupWeighted can be created directly from a utility::Matrix or 57 /// from another MatrixLookupWeighted. In the latter case, the 58 58 /// resulting MatrixLookupWeighted is looking directly into the 59 59 /// underlying matrix to avoid multiple lookups. … … 109 109 /// for nan's in @a matrix. 110 110 /// 111 /// \see bool utility::nan(const matrix&, matrix&);111 /// \see bool utility::nan(const Matrix&, Matrix&); 112 112 /// 113 113 /// @note If @a matrix goes out of scope or … … 124 124 \note no check for nan is performed. 125 125 126 \see bool utility::nan(const matrix&, matrix&); 127 128 @note If @a matrix goes out of scope or 126 @note If underlying utility::Matrix goes out of scope or 129 127 is deleted, the MatrixLookupWeighted becomes invalid and the 130 128 result of further use is undefined. … … 141 139 /// weights(row[i],column[j]). This also means that number of 142 140 /// rows in created MatrixLookupWeighted is equal to size of 143 /// vector @a row, and number of columns is equal to size of 144 /// vector @a column. 141 /// @a row, and number of columns is equal to size of @a column. 145 142 /// 146 143 /// @note If @a matrix or @a weights goes out of scope or is deleted, the
Note: See TracChangeset
for help on using the changeset viewer.