org.netlib.arpack
Class Svout

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

public class Svout
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: SVOUT c c Purpose: Real vector output routine. c c Usage: CALL SVOUT (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
Svout()
           
 
Method Summary
static void svout(int lout, int n, float[] 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

Svout

public Svout()
Method Detail

svout

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