org.netlib.arpack
Class Dvout

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

public class Dvout
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 Routine: DVOUT c c Purpose: Real vector output routine. c c Usage: CALL DVOUT (LOUT, N, SX, IDIGIT, IFMT) c c Arguments c N - Length of array SX. (Input) c SX - Real array to be printed. (Input) c IFMT - Format to be used in printing array SX. (Input) c IDIGIT - Print up to IABS(IDIGIT) decimal digits per number. (In) c If IDIGIT .LT. 0, printing is done with 72 columns. c If IDIGIT .GT. 0, printing is done with 132 columns. c c----------------------------------------------------------------------- c


Constructor Summary
Dvout()
           
 
Method Summary
static void dvout(int lout, int n, double[] sx, int _sx_offset, int idigit, java.lang.String ifmt)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Dvout

public Dvout()
Method Detail

dvout

public static void dvout(int lout,
                         int n,
                         double[] sx,
                         int _sx_offset,
                         int idigit,
                         java.lang.String ifmt)