All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.netlib.lapack.Dlamc5

java.lang.Object
   |
   +----org.netlib.lapack.Dlamc5

public class Dlamc5
extends 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.

* .. * * Purpose * ======= * * DLAMC5 attempts to compute RMAX, the largest machine floating-point * number, without overflow. It assumes that EMAX + abs(EMIN) sum * approximately to a power of 2. It will fail on machines where this * assumption does not hold, for example, the Cyber 205 (EMIN = -28625, * EMAX = 28718). It will also fail if the value supplied for EMIN is * too large (i.e. too close to zero), probably with overflow. * * Arguments * ========= * * BETA (input) INTEGER * The base of floating-point arithmetic. * * P (input) INTEGER * The number of base BETA digits in the mantissa of a * floating-point value. * * EMIN (input) INTEGER * The minimum exponent before (gradual) underflow. * * IEEE (input) LOGICAL * A logical flag specifying whether or not the arithmetic * system is thought to comply with the IEEE standard. * * EMAX (output) INTEGER * The largest exponent before overflow * * RMAX (output) DOUBLE PRECISION * The largest machine floating-point number. * * ===================================================================== * * .. Parameters ..


Constructor Index

 o Dlamc5()

Method Index

 o dlamc5(int, int, int, boolean, intW, doubleW)

Constructors

 o Dlamc5
 public Dlamc5()

Methods

 o dlamc5
 public static void dlamc5(int beta,
                           int p,
                           int emin,
                           boolean ieee,
                           intW emax,
                           doubleW rmax)

All Packages  Class Hierarchy  This Package  Previous  Next  Index