#ifndef FUNC_EXP_H_
#define FUNC_EXP_H_

#include <functions/InverseLinkFunc.h>

/** 
 * @short Exponential function
 * @see Log
 * <pre>
 * y <- exp(x)
 * </pre>
 */
class Exp: public InverseLinkFunc
{
public:
  Exp ();
  double eval (std::vector <SArray const *> const &args) const;
  double link(double mu) const;
  double gradLink(double mu) const;
};

#endif /* FUNC_EXP_H_ */


syntax highlighted by Code2HTML, v. 0.9.1