All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.netlib.blas.DROT

java.lang.Object
   |
   +----org.netlib.blas.DROT

public class DROT
extends Object
DROT is a simplified interface to the JLAPACK routine drot.
This interface converts Java-style 2D row-major arrays into
the 1D column-major linearized arrays expected by the lower
level JLAPACK routines.  Using this interface also allows you
to omit offset and leading dimension arguments.  However, because
of these conversions, these routines will be slower than the low
level ones.  Following is the description from the original Fortran
source.  Contact seymour@cs.utk.edu with any questions.

c c applies a plane rotation. c jack dongarra, linpack, 3/11/78. c modified 12/3/93, array(1) declarations changed to array(*) c


Constructor Index

 o DROT()

Method Index

 o DROT(int, double[], int, double[], int, double, double)

Constructors

 o DROT
 public DROT()

Methods

 o DROT
 public static void DROT(int n,
                         double dx[],
                         int incx,
                         double dy[],
                         int incy,
                         double c,
                         double s)

All Packages  Class Hierarchy  This Package  Previous  Next  Index