Changeset 776 for trunk/yat


Ignore:
Timestamp:
Mar 4, 2007, 12:18:41 PM (16 years ago)
Author:
Jari Häkkinen
Message:

Fixed typos.

File:
1 edited

Legend:

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

    r774 r776  
    414414     \brief Check if all elements of the matrix are zero.
    415415
    416      \return True if all elements in the matrix is zero, false othwerwise
     416     \return True if all elements in the matrix is zero, false
     417     othwerwise.
    417418  */
    418419  bool isnull(const matrix&);
    419420
    420421  /**
    421      \brief Get the maximum value in the matrix.
     422     \brief Get the maximum value of the matrix.
    422423
    423424     \return The maximum value of the matrix.
     
    426427
    427428  /**
    428      \brief Get the minimum value in the matrix.
     429     \brief Get the minimum value of the matrix.
    429430
    430431     \return The minimum value of the matrix.
     
    438439     values of the matrix, respectively.
    439440
    440      \note The lowest index has precedence (searching in row-major
    441      order).
     441     \note Lower index has precedence (searching in row-major order).
    442442  */
    443443  void minmax_index(const matrix&,
     
    475475
    476476  /**
    477      @brief vector matrix multiplication
     477     \brief vector matrix multiplication
    478478   */
    479479  vector operator*(const matrix&, const vector&);
    480480
    481481  /**
    482      @brief matrix vector multiplication
     482     \brief matrix vector multiplication
    483483   */
    484484  vector operator*(const vector&, const matrix&);
Note: See TracChangeset for help on using the changeset viewer.