#ifndef FUNC_PROBIT_H_ #define FUNC_PROBIT_H_ #include /** * @short Normal quantile function * @see Phi *
 * y <- probit(p)
 * Prob(Y < y) = p for Y ~ N(0,1); 0 < p < 1
 * 
*/ class Probit:public ScalarFunc { public: Probit (); double eval (std::vector const &args) const; bool checkParameterValue (std::vector const &args) const; }; #endif /* FUNC_PROBIT_H_ */