#ifndef FUNC_LOGGAM_H_ #define FUNC_LOGGAM_H_ #include /** * @short Log gamma function *
 * y <- loggam(x)
 * y = log(gamma(x)) for x > 0
 * 
*/ class LogGam:public ScalarFunc { public: LogGam (); double eval (std::vector const &args) const; bool checkParameterValue (std::vector const &args) const; }; #endif /* FUNC_LOGGAM_H_ */