Package org.apache.commons.math3.util
Class FastMath.ExpFracTable
java.lang.Object
org.apache.commons.math3.util.FastMath.ExpFracTable
- Enclosing class:
FastMath
Enclose large data table in nested static class so it's only loaded on first access.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final double[]
Exponential over the range of 0 - 1 in increments of 2^-10 exp(x/1024) = expFracTableA[x] + expFracTableB[x].private static final double[]
Exponential over the range of 0 - 1 in increments of 2^-10 exp(x/1024) = expFracTableA[x] + expFracTableB[x]. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
EXP_FRAC_TABLE_A
private static final double[] EXP_FRAC_TABLE_AExponential over the range of 0 - 1 in increments of 2^-10 exp(x/1024) = expFracTableA[x] + expFracTableB[x]. 1024 = 2^10 -
EXP_FRAC_TABLE_B
private static final double[] EXP_FRAC_TABLE_BExponential over the range of 0 - 1 in increments of 2^-10 exp(x/1024) = expFracTableA[x] + expFracTableB[x].
-
-
Constructor Details
-
ExpFracTable
private ExpFracTable()
-