Exponentiates the given input value @param x the input @return e x
(double x)
| 193 | * @return e<sup>x</sup> |
| 194 | */ |
| 195 | public static double exp(double x) |
| 196 | { |
| 197 | return pow2(expPowConst*x); |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Computes the digamma function of the input |