- Timestamp:
- Mar 4, 2007, 12:18:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/matrix.h
r774 r776 414 414 \brief Check if all elements of the matrix are zero. 415 415 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. 417 418 */ 418 419 bool isnull(const matrix&); 419 420 420 421 /** 421 \brief Get the maximum value inthe matrix.422 \brief Get the maximum value of the matrix. 422 423 423 424 \return The maximum value of the matrix. … … 426 427 427 428 /** 428 \brief Get the minimum value inthe matrix.429 \brief Get the minimum value of the matrix. 429 430 430 431 \return The minimum value of the matrix. … … 438 439 values of the matrix, respectively. 439 440 440 \note The lowest index has precedence (searching in row-major 441 order). 441 \note Lower index has precedence (searching in row-major order). 442 442 */ 443 443 void minmax_index(const matrix&, … … 475 475 476 476 /** 477 @brief vector matrix multiplication477 \brief vector matrix multiplication 478 478 */ 479 479 vector operator*(const matrix&, const vector&); 480 480 481 481 /** 482 @brief matrix vector multiplication482 \brief matrix vector multiplication 483 483 */ 484 484 vector operator*(const vector&, const matrix&);
Note: See TracChangeset
for help on using the changeset viewer.