MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / exp

Method exp

JSAT/src/jsat/math/FastMath.java:195–198  ·  view source on GitHub ↗

Exponentiates the given input value @param x the input @return e x

(double x)

Source from the content-addressed store, hash-verified

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

Callers 15

testExpMethod · 0.95
p_j_iMethod · 0.95
getTopicsMethod · 0.95
runMethod · 0.95
prepareGammaThetaMethod · 0.95
computePhiMethod · 0.95
getP2L2Method · 0.80
lossMethod · 0.80
derivMethod · 0.80
deriv2Method · 0.80
classifyMethod · 0.80
classifyMethod · 0.80

Calls 1

pow2Method · 0.95

Tested by 1

testExpMethod · 0.76