org.netlib.blas
Class Dcopy

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

public class Dcopy
extends java.lang.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.

c c copies a vector, x, to a vector, y. c uses unrolled loops for increments equal to one. c jack dongarra, linpack, 3/11/78. c modified 12/3/93, array(1) declarations changed to array(*) c


Constructor Summary
Dcopy()
           
 
Method Summary
static void dcopy(int n, double[] dx, int _dx_offset, int incx, double[] dy, int _dy_offset, int incy)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Dcopy

public Dcopy()
Method Detail

dcopy

public static void dcopy(int n,
                         double[] dx,
                         int _dx_offset,
                         int incx,
                         double[] dy,
                         int _dy_offset,
                         int incy)