Changeset 717 for trunk/yat/utility/matrix.h
- Timestamp:
- Dec 25, 2006, 9:30:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/matrix.h
r716 r717 210 210 211 211 /// 212 /// @return The index to the element with the maximum value of the213 /// matrix. The lowest index has precedence (searching in214 /// row-major order).215 ///216 std::pair<size_t,size_t> max_index(void) const;217 218 ///219 212 /// @return The minimum value of the matrix. 220 213 /// 221 214 double min(void) const; 222 223 ///224 /// @return The index to the element with the minimum value of the225 /// matrix. The lowest index has precedence (searching in226 /// row-major order).227 ///228 std::pair<size_t,size_t> min_index(void) const;229 215 230 216 /// … … 235 221 void minmax_index(std::pair<size_t,size_t>& min, 236 222 std::pair<size_t,size_t>& max) const; 237 238 ///239 /// @return The minimum and maximum values of the matrix, as the240 /// \a first and \a second member of the returned \a pair,241 /// respectively.242 ///243 std::pair<double,double> minmax(void) const;244 223 245 224 ///
Note: See TracChangeset
for help on using the changeset viewer.