Changeset 242
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/matrix.cc
r240 r242 114 114 115 115 116 void matrix::mul_elements(const matrix& other)117 {118 gsl_matrix_mul_elements( m_, other.m_ );119 }120 121 122 123 116 vector matrix::TEMP_col_return(size_t column) const 124 117 { -
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.