Changeset 260 for trunk/src/vector.h
- Timestamp:
- Mar 4, 2005, 2:11:28 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/vector.h
r259 r260 107 107 /// Vector addition, \f$this_i = this_i + other_i \; \forall i\f$. 108 108 /// 109 /// @return .GSL_SUCCESS on normal exit.109 /// @return GSL_SUCCESS on normal exit. 110 110 /// 111 111 // Jari, doxygen group as Vector operators … … 116 116 /// \forall i\f$. 117 117 /// 118 /// @return .GSL_SUCCESS on normal exit.118 /// @return GSL_SUCCESS on normal exit. 119 119 /// 120 120 // Jari, doxygen group as Vector operators … … 126 126 /// this_i/other_i \; \forall i\f$. 127 127 /// 128 /// @return .GSL_SUCCESS on normal exit.128 /// @return GSL_SUCCESS on normal exit. 129 129 /// 130 130 // Jari, doxygen group as Vector operators … … 201 201 /// this_i * other_i \; \forall i\f$. 202 202 /// 203 /// @return .GSL_SUCCESS on normal exit.203 /// @return GSL_SUCCESS on normal exit. 204 204 /// 205 205 // Jari, doxygen group as Vector operators … … 209 209 /// Reverse the order of elements in the vector. 210 210 /// 211 /// @return .GSL_SUCCESS on normal exit.211 /// @return GSL_SUCCESS on normal exit. 212 212 /// 213 213 // Jari, doxygen group as Exchanging elements … … 217 217 /// Rescale vector, \f$this_i = this_i * factor \; \forall i\f$. 218 218 /// 219 /// @return .GSL_SUCCESS on normal exit.219 /// @return GSL_SUCCESS on normal exit. 220 220 /// 221 221 // Jari, doxygen group as Vector operators … … 250 250 /// Vector subtraction, \f$this_i = this_i - other_i \; \forall i\f$. 251 251 /// 252 /// @return .GSL_SUCCESS on normal exit.252 /// @return GSL_SUCCESS on normal exit. 253 253 /// 254 254 // Jari, doxygen group as Vector operators … … 267 267 /// same length. 268 268 /// 269 /// @return .GSL_SUCCESS on normal exit.269 /// @return GSL_SUCCESS on normal exit. 270 270 /// 271 271 inline int swap(vector& other) { return gsl_vector_swap(v_,other.v_); } … … 274 274 /// Exchange elements \a i and \a j. 275 275 /// 276 /// @return .GSL_SUCCESS on normal exit.276 /// @return GSL_SUCCESS on normal exit. 277 277 /// 278 278 // Jari, doxygen group as Exchanging elements
Note: See TracChangeset
for help on using the changeset viewer.