Ignore:
Timestamp:
Dec 25, 2006, 9:30:00 PM (16 years ago)
Author:
Jari Häkkinen
Message:

Removed long time non-implemented function declarations ... not needed?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/utility/matrix.h

    r716 r717  
    210210
    211211    ///
    212     /// @return The index to the element with the maximum value of the
    213     /// matrix. The lowest index has precedence (searching in
    214     /// row-major order).
    215     ///
    216     std::pair<size_t,size_t> max_index(void) const;
    217 
    218     ///
    219212    /// @return The minimum value of the matrix.
    220213    ///
    221214    double min(void) const;
    222 
    223     ///
    224     /// @return The index to the element with the minimum value of the
    225     /// matrix. The lowest index has precedence (searching in
    226     /// row-major order).
    227     ///
    228     std::pair<size_t,size_t> min_index(void) const;
    229215
    230216    ///
     
    235221    void minmax_index(std::pair<size_t,size_t>& min,
    236222                      std::pair<size_t,size_t>& max) const;
    237 
    238     ///
    239     /// @return The minimum and maximum values of the matrix, as the
    240     /// \a first and \a second member of the returned \a pair,
    241     /// respectively.
    242     ///
    243     std::pair<double,double> minmax(void) const;
    244223
    245224    ///
Note: See TracChangeset for help on using the changeset viewer.