org.netlib.lapack
Class SLAMC3

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

public class SLAMC3
extends java.lang.Object

SLAMC3 is a simplified interface to the JLAPACK routine slamc3.
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 * ======= * * SLAMC3 is intended to force A and B to be stored prior to doing * the addition of A and B , for use in situations where optimizers * might hold one of these in a register. * * Arguments * ========= * * A, B (input) REAL * The values A and B. * * ===================================================================== * * .. Executable Statements .. *


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

Constructor Detail

SLAMC3

public SLAMC3()
Method Detail

SLAMC3

public static float SLAMC3(float a,
                           float b)