org.netlib.arpack
Class Icopy

java.lang.Object
  extended by org.netlib.arpack.Icopy

public class Icopy
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\Documentation c c\Name: ICOPY c c\Description: c ICOPY copies an integer vector lx to an integer vector ly. c c\Usage: c call icopy ( n, lx, inc, ly, incy ) c c\Arguments: c n integer (input) c On entry, n is the number of elements of lx to be c copied to ly. c c lx integer array (input) c On entry, lx is the integer vector to be copied. c c incx integer (input) c On entry, incx is the increment between elements of lx. c c ly integer array (input) c On exit, ly is the integer vector that contains the c copy of lx. c c incy integer (input) c On entry, incy is the increment between elements of ly. c c\Enddoc c c-------------------------------------------------------------------- c


Constructor Summary
Icopy()
           
 
Method Summary
static void icopy(int n, int[] lx, int _lx_offset, int incx, int[] ly, int _ly_offset, int incy)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Icopy

public Icopy()
Method Detail

icopy

public static void icopy(int n,
                         int[] lx,
                         int _lx_offset,
                         int incx,
                         int[] ly,
                         int _ly_offset,
                         int incy)