org.netlib.lapack
Class SLAPY2
java.lang.Object
org.netlib.lapack.SLAPY2
public class SLAPY2
- extends java.lang.Object
SLAPY2 is a simplified interface to the JLAPACK routine slapy2.
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
* =======
*
* SLAPY2 returns sqrt(x**2+y**2), taking care not to cause unnecessary
* overflow.
*
* Arguments
* =========
*
* X (input) REAL
* Y (input) REAL
* X and Y specify the values x and y.
*
* =====================================================================
*
* .. Parameters ..
Method Summary |
static float |
SLAPY2(float x,
float y)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SLAPY2
public SLAPY2()
SLAPY2
public static float SLAPY2(float x,
float y)