Changeset 63 for trunk/src/vector.h
- Timestamp:
- Apr 19, 2004, 1:21:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/vector.h
r62 r63 5 5 6 6 #include <iostream> 7 #include <vector> 8 #include <utility> 7 9 8 10 #include <gsl/gsl_vector.h> … … 86 88 /// @return A pointer to the internal GSL vector, 87 89 /// 88 inline gsl_vector* gsl_vector_pointer(void) { return v_; }; 90 inline gsl_vector* gsl_vector_pointer(void) { return v_; } 91 92 ///This function returns the indices of the minimum and maximum values in 93 ///the sub-vector (defined by subset), storing them in imin and imax. When 94 ///there are several equal minimum or maximum elements then the lowest 95 ///indices are returned. The returned index is the index from the complete vector (not the sub-vector) @return Index corresponding to the smallest 96 ///and largest value. 97 /// 98 std::pair<u_int,u_int> vector::minmax_index(const std::vector<u_int>& subset ) const; 89 99 90 100 ///
Note: See TracChangeset
for help on using the changeset viewer.