All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.netlib.blas.DROTG

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

public class DROTG
extends Object
DROTG is a simplified interface to the JLAPACK routine drotg.
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 construct givens plane rotation. c jack dongarra, linpack, 3/11/78. c


Constructor Index

 o DROTG()

Method Index

 o DROTG(doubleW, doubleW, doubleW, doubleW)

Constructors

 o DROTG
 public DROTG()

Methods

 o DROTG
 public static void DROTG(doubleW da,
                          doubleW db,
                          doubleW c,
                          doubleW s)

All Packages  Class Hierarchy  This Package  Previous  Next  Index