Changeset 242 for trunk/src/matrix.h
- Timestamp:
- Feb 22, 2005, 12:31:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/matrix.h
r240 r242 89 89 /// 90 90 /// This function multiplies all elements between two matrices and 91 /// returns a third matrix containing the result, \f$a_{ij} = 92 /// b_{ij} * c_{ij} \; \forall i,j\f$. 93 /// 94 /// @return The result matrix. 95 /// 96 void mul_elements(const matrix&); 91 /// the result is stored back into the calling object, \f$a_{ij} = 92 /// a_{ij} * b_{ij} \; \forall i,j\f$. 93 /// 94 inline void mul_elements(const matrix& b) 95 { gsl_matrix_mul_elements(m_,b.m_); } 97 96 98 97 ///
Note: See TracChangeset
for help on using the changeset viewer.