![]() |
LAPACK 3.12.1
LAPACK: Linear Algebra PACKage
|
subroutine dlaord | ( | character | job, |
integer | n, | ||
double precision, dimension( * ) | x, | ||
integer | incx ) |
DLAORD
!> !> DLAORD sorts the elements of a vector x in increasing or decreasing !> order. !>
[in] | JOB | !> JOB is CHARACTER !> = 'I': Sort in increasing order !> = 'D': Sort in decreasing order !> |
[in] | N | !> N is INTEGER !> The length of the vector X. !> |
[in,out] | X | !> X is DOUBLE PRECISION array, dimension !> (1+(N-1)*INCX) !> On entry, the vector of length n to be sorted. !> On exit, the vector x is sorted in the prescribed order. !> |
[in] | INCX | !> INCX is INTEGER !> The spacing between successive elements of X. INCX >= 0. !> |
Definition at line 72 of file dlaord.f.