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