Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

logit

Synopsis
#include <boost/math/special_functions/logit.hpp>

namespace boost { namespace math {

template <typename RealType, typename Policy>
RealType logit(RealType x, const Policy&);

template <typename RealType>
RealType logit(RealType x)

}} // namespaces
Description

Returns the logit function This function is broadly useful, and is used to compute the Quantile of the logistic distribution. The inverse of this function is the logistic_sigmoid.


PrevUpHomeNext