| 233 | 
  | 
    /** | 
| 234 | 
  | 
     * Tests if this matrix is identical to matrix m | 
| 235 | 
  | 
     * @return true if this matrix is equal to the matrix m, return false otherwise | 
| 236 | 
< | 
     * @m matrix to be compared | 
| 236 | 
> | 
     * @param m matrix to be compared | 
| 237 | 
  | 
     * | 
| 238 | 
  | 
     * @todo replace operator == by template function equal | 
| 239 | 
  | 
     */ | 
| 250 | 
  | 
    /** | 
| 251 | 
  | 
     * Tests if this matrix is not equal to matrix m | 
| 252 | 
  | 
     * @return true if this matrix is not equal to the matrix m, return false otherwise | 
| 253 | 
< | 
     * @m matrix to be compared | 
| 253 | 
> | 
     * @param m matrix to be compared | 
| 254 | 
  | 
     */ | 
| 255 | 
  | 
    bool operator !=(const DynamicRectMatrix<Real> m) { | 
| 256 | 
  | 
      return !(*this == m); |