org.netlib.blas
Class Dnrm2

java.lang.Object
  extended by org.netlib.blas.Dnrm2

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

* .. * * DNRM2 returns the euclidean norm of a vector via the function * name, so that * * DNRM2 := sqrt( x'*x ) * * * * -- This version written on 25-October-1982. * Modified on 14-October-1993 to inline the call to DLASSQ. * Sven Hammarling, Nag Ltd. * * * .. Parameters ..


Constructor Summary
Dnrm2()
           
 
Method Summary
static double dnrm2(int n, double[] x, int _x_offset, int incx)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Dnrm2

public Dnrm2()
Method Detail

dnrm2

public static double dnrm2(int n,
                           double[] x,
                           int _x_offset,
                           int incx)