org.netlib.blas
Class SCOPY

java.lang.Object
  extended by org.netlib.blas.SCOPY

public class SCOPY
extends java.lang.Object

SCOPY is a simplified interface to the JLAPACK routine scopy.
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 copies a vector, x, to a vector, y. c uses unrolled loops for increments equal to 1. c jack dongarra, linpack, 3/11/78. c modified 12/3/93, array(1) declarations changed to array(*) c


Constructor Summary
SCOPY()
           
 
Method Summary
static void SCOPY(int n, float[] sx, int incx, float[] sy, int incy)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SCOPY

public SCOPY()
Method Detail

SCOPY

public static void SCOPY(int n,
                         float[] sx,
                         int incx,
                         float[] sy,
                         int incy)