|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<CumulativeNormal.Method>
com.numericalmethod.suanshu.analysis.function.special.CumulativeNormal.Method
public static enum CumulativeNormal.Method
the methods available to compute the cumulative Normal
| Enum Constant Summary | |
|---|---|
GAMMA
Cumulative Normal can be written as a function of the gamma function. |
|
HASTINGS
HASTINGS is faster, but is less accurate. |
|
MARSAGLIA
MARSAGLIA is about 3 times slower, but is more accurate. |
|
| Method Summary | |
|---|---|
static CumulativeNormal.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static CumulativeNormal.Method[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CumulativeNormal.Method HASTINGS
public static final CumulativeNormal.Method MARSAGLIA
x < 6.23025,
and relative error < 1e-12 for larger x.
public static final CumulativeNormal.Method GAMMA
| Method Detail |
|---|
public static CumulativeNormal.Method[] values()
for (CumulativeNormal.Method c : CumulativeNormal.Method.values()) System.out.println(c);
public static CumulativeNormal.Method valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||