All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.netlib.lapack.Dlaord

java.lang.Object
   |
   +----org.netlib.lapack.Dlaord

public class Dlaord
extends Object
Following is the description from the original
Fortran source.  For each array argument, the Java
version will include an integer offset parameter, so
the arguments may not match the description exactly.
Contact seymour@cs.utk.edu with any questions.

* .. * * Purpose * ======= * * DLAORD sorts the elements of a vector x in increasing or decreasing * order. * * Arguments * ========= * * JOB (input) CHARACTER * = 'I': Sort in increasing order * = 'D': Sort in decreasing order * * N (input) INTEGER * The length of the vector X. * * X (input/output) 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. * * INCX (input) INTEGER * The spacing between successive elements of X. INCX >= 0. * * ===================================================================== * * .. Local Scalars ..


Constructor Index

 o Dlaord()

Method Index

 o dlaord(String, int, double[], int, int)

Constructors

 o Dlaord
 public Dlaord()

Methods

 o dlaord
 public static void dlaord(String job,
                           int n,
                           double x[],
                           int _x_offset,
                           int incx)

All Packages  Class Hierarchy  This Package  Previous  Next  Index