#ifndef FUNC_LOGIT_H_ #define FUNC_LOGIT_H_ #include /** * @short Logistic function * @see ILogit *
 * y <- logit(p)
 * y = log(p/(1-p)) for 0 < p < 1
 * 
*/ class Logit:public ScalarFunc { public: Logit (); double eval (std::vector const &args) const; bool checkParameterValue (std::vector const &args) const; }; #endif /* FUNC_LOGIT_H_ */