Esempio n. 1
0
 /**
  * Returns <i>{@link #E e}</i> raised to the specified power.
  *
  * @param x the exponent.
  * @return <code><i>e</i><sup>x</sup></code>
  * @see <a href="http://mathworld.wolfram.com/ExponentialFunction.html">Exponential Function --
  *     from MathWorld</a>
  */
 public static double exp(double x) {
   return MathLib._ieee754_exp(x);
 }