org.netlib.arpack
Class Snconv

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

public class Snconv
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.

*----------------------------------------------------------------------- \BeginDoc \Name: snconv \Description: Convergence testing for the nonsymmetric Arnoldi eigenvalue routine. \Usage: call snconv ( N, RITZR, RITZI, BOUNDS, TOL, NCONV ) \Arguments N Integer. (INPUT) Number of Ritz values to check for convergence. RITZR, Real arrays of length N. (INPUT) RITZI Real and imaginary parts of the Ritz values to be checked for convergence. BOUNDS Real array of length N. (INPUT) Ritz estimates for the Ritz values in RITZR and RITZI. TOL Real scalar. (INPUT) Desired backward error for a Ritz value to be considered "converged". NCONV Integer scalar. (OUTPUT) Number of "converged" Ritz values. \EndDoc ----------------------------------------------------------------------- \BeginLib \Local variables: xxxxxx real \Routines called: second ARPACK utility routine for timing. slamch LAPACK routine that determines machine constants. slapy2 LAPACK routine to compute sqrt(x**2+y**2) carefully. \Author Danny Sorensen Phuong Vu Richard Lehoucq CRPC / Rice University Dept. of Computational & Houston, Texas Applied Mathematics Rice University Houston, Texas \Revision history: xx/xx/92: Version ' 2.1' \SCCS Information: @(#) FILE: nconv.F SID: 2.3 DATE OF SID: 4/20/96 RELEASE: 2 \Remarks 1. xxxx \EndLib -----------------------------------------------------------------------


Field Summary
static org.netlib.util.floatW t0
           
static org.netlib.util.floatW t1
           
static float t2
           
static float t3
           
static float t4
           
static float t5
           
 
Constructor Summary
Snconv()
           
 
Method Summary
static void snconv(int n, float[] ritzr, int _ritzr_offset, float[] ritzi, int _ritzi_offset, float[] bounds, int _bounds_offset, float tol, org.netlib.util.intW nconv)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

t0

public static org.netlib.util.floatW t0

t1

public static org.netlib.util.floatW t1

t2

public static float t2

t3

public static float t3

t4

public static float t4

t5

public static float t5
Constructor Detail

Snconv

public Snconv()
Method Detail

snconv

public static void snconv(int n,
                          float[] ritzr,
                          int _ritzr_offset,
                          float[] ritzi,
                          int _ritzi_offset,
                          float[] bounds,
                          int _bounds_offset,
                          float tol,
                          org.netlib.util.intW nconv)