#ifndef FUNC_EXP_H_ #define FUNC_EXP_H_ #include /** * @short Exponential function * @see Log *
 * y <- exp(x)
 * 
*/ class Exp: public InverseLinkFunc { public: Exp (); double eval (std::vector const &args) const; double link(double mu) const; double gradLink(double mu) const; }; #endif /* FUNC_EXP_H_ */