org.netlib.lapack
Class SISNAN

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

public class SISNAN
extends java.lang.Object

SISNAN is a simplified interface to the JLAPACK routine sisnan.
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 * ======= * * SISNAN returns .TRUE. if its argument is NaN, and .FALSE. * otherwise. To be replaced by the Fortran 2003 intrinsic in the * future. * * Arguments * ========= * * SIN (input) REAL * Input to test for NaN. * * ===================================================================== * * .. External Functions ..


Constructor Summary
SISNAN()
           
 
Method Summary
static boolean SISNAN(float sin)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SISNAN

public SISNAN()
Method Detail

SISNAN

public static boolean SISNAN(float sin)