Go to the first, previous, next, last section, table of contents.
The following function can be used to exchange, or permute, the elements
of a vector.
- Function: int gsl_vector_swap_elements (gsl_vector * v, size_t i, size_t j)
-
This function exchanges the i-th and j-th elements of the
vector v in-place.
- Function: int gsl_vector_reverse (gsl_vector * v)
-
This function reverses the order of the elements of the vector v.
Go to the first, previous, next, last section, table of contents.