org.netlib.lapack
Class LSAME

java.lang.Object
  extended by org.netlib.lapack.LSAME

public class LSAME
extends java.lang.Object

LSAME is a simplified interface to the JLAPACK routine lsame.
This interface converts Java-style 2D row-major arrays into
the 1D column-major linearized arrays expected by the lower
level JLAPACK routines.  Using this interface also allows you
to omit offset and leading dimension arguments.  However, because
of these conversions, these routines will be slower than the low
level ones.  Following is the description from the original Fortran
source.  Contact seymour@cs.utk.edu with any questions.

* .. * * Purpose * ======= * * LSAME returns .TRUE. if CA is the same letter as CB regardless of * case. * * Arguments * ========= * * CA (input) CHARACTER*1 * CB (input) CHARACTER*1 * CA and CB specify the single characters to be compared. * * ===================================================================== * * .. Intrinsic Functions ..


Constructor Summary
LSAME()
           
 
Method Summary
static boolean LSAME(java.lang.String ca, java.lang.String cb)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LSAME

public LSAME()
Method Detail

LSAME

public static boolean LSAME(java.lang.String ca,
                            java.lang.String cb)