Changeset 597 for trunk/c++_tools/gslapi/matrix.h
- Timestamp:
- Aug 28, 2006, 3:03:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/gslapi/matrix.h
r570 r597 142 142 /// 143 143 /// Elementwise addition of the elements of matrix \a b to the 144 /// elements of the calling matrix ,\f$ a_{ij} = a_{ij} + b_{ij} \;145 /// \forall i,j \f$. The result is stored into the calling matrix.144 /// elements of the calling matrix ,\f$ a_{ij} = a_{ij} + b_{ij} \; 145 /// \forall i,j \f$. The result is stored into the calling matrix. 146 146 /// 147 147 /// @return Whatever GSL returns. … … 151 151 /// 152 152 /// Add the scalar value \a d to the elements of the calling 153 /// matrix, \f$ a_{ij} = a_{ij} + d \; \forall i,j\f$. The result153 /// matrix, \f$ a_{ij} = a_{ij} + d \; \forall i,j \f$. The result 154 154 /// is stored into the calling matrix. 155 155 /// … … 166 166 /// 167 167 /// Elementwise division of the elemnts of the calling matrix by 168 /// the elements of matrix \a b, \f$ a_{ij} = a_{ij} / b_{ij} \;169 /// \forall i,j \f$. The result is stored into the calling matrix.168 /// the elements of matrix \a b, \f$ a_{ij} = a_{ij} / b_{ij} \; 169 /// \forall i,j \f$. The result is stored into the calling matrix. 170 170 /// 171 171 /// @return Whatever GSL returns. … … 257 257 /// 258 258 /// Multiply the elements of matrix \a b with the elements of the 259 /// calling matrix ,\f$ a_{ij} = a_{ij} * b_{ij} \; \forall260 /// i,j \f$. The result is stored into the calling matrix.259 /// calling matrix ,\f$ a_{ij} = a_{ij} * b_{ij} \; \forall 260 /// i,j \f$. The result is stored into the calling matrix. 261 261 /// 262 262 /// @return Whatever GSL returns. … … 272 272 /// 273 273 /// Multiply the elements of the calling matrix with a scalar \a 274 /// d, \f$ a_{ij} = d * a_{ij} \; \forall i,j\f$. The result is274 /// d, \f$ a_{ij} = d * a_{ij} \; \forall i,j \f$. The result is 275 275 /// stored into the calling matrix. 276 276 /// … … 318 318 /// 319 319 /// Subtract the elements of matrix \a b from the elements of the 320 /// calling matrix ,\f$ a_{ij} = a_{ij} - b_{ij} \; \forall321 /// i,j \f$. The result is stored into the calling matrix.320 /// calling matrix ,\f$ a_{ij} = a_{ij} - b_{ij} \; \forall 321 /// i,j \f$. The result is stored into the calling matrix. 322 322 /// 323 323 /// @return Whatever GSL returns.
Note: See TracChangeset
for help on using the changeset viewer.