Changeset 811 for trunk/yat/utility
- Timestamp:
- Mar 16, 2007, 2:00:31 AM (16 years ago)
- Location:
- trunk/yat/utility
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/matrix.h
r810 r811 202 202 void mul(const matrix& b); 203 203 204 /// 205 /// @brief Resize matrix 206 /// 207 /// All elements are set to @a init_value. 208 /// 204 /** 205 \brief Resize matrix 206 207 All elements are set to @a init_value. 208 209 \note underlying GSL matrix is destroyed and a view into this 210 matrix becomes invalid. 211 */ 209 212 void resize(size_t, size_t, double init_value=0); 210 213 -
trunk/yat/utility/vector.h
r810 r811 267 267 void mul(const vector& other); 268 268 269 /// 270 /// @brief Resize vector 271 /// 272 /// All elements are set to @a init_value. 273 /// 269 /** 270 @brief Resize vector 271 272 All elements are set to @a init_value. 273 274 \note Underlying GSL vector is destroyed and a view into this 275 vector becomes invalid. 276 */ 274 277 void resize(size_t, double init_value=0); 275 278
Note: See TracChangeset
for help on using the changeset viewer.