org.netlib.arpack
Class Dmout

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

public class Dmout
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: DMOUT c c Purpose: Real matrix output routine. c c Usage: CALL DMOUT (LOUT, M, N, A, LDA, IDIGIT, IFMT) c c Arguments c M - Number of rows of A. (Input) c N - Number of columns of A. (Input) c A - Real M by N matrix to be printed. (Input) c LDA - Leading dimension of A exactly as specified in the c dimension statement of the calling program. (Input) c IFMT - Format to be used in printing matrix A. (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


Field Summary
static java.lang.String icol
           
 
Constructor Summary
Dmout()
           
 
Method Summary
static void dmout(int lout, int m, int n, double[] a, int _a_offset, int lda, int idigit, java.lang.String ifmt)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

icol

public static java.lang.String icol
Constructor Detail

Dmout

public Dmout()
Method Detail

dmout

public static void dmout(int lout,
                         int m,
                         int n,
                         double[] a,
                         int _a_offset,
                         int lda,
                         int idigit,
                         java.lang.String ifmt)