Changeset 294


Ignore:
Timestamp:
Apr 26, 2005, 10:08:06 AM (18 years ago)
Author:
Peter
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/matrix.h

    r275 r294  
    6868
    6969    ///
    70     /// @return true if each element deviates less or equal than \a d
     70    /// @return true if each element deviates less or equal than \a
     71    /// d. If any matrix contain a nan false is always returned.
    7172    ///
    7273    bool equal(const matrix&, const double d=0) const;
     
    207208    /// @return True if all elements are equal otherwise False.
    208209    ///
     210    /// @see equal
     211    ///
    209212    inline bool operator==( const matrix& other ) const { return equal(other);}
    210213
     
    213216    ///
    214217    /// @return False if all elements are equal otherwise True.
     218    ///
     219    /// @see equal
    215220    ///
    216221    inline bool operator!=( const matrix& other ) const {return !equal(other);}
Note: See TracChangeset for help on using the changeset viewer.