
Solve a problem – Filter by language, license, keyword, owner, or search text to find code & info fast.
Join Siafoo Now
or
Learn More
Logit function
0
Updated over 10 years ago (28 Oct 2008 at 10:56 PM)
recent activity
In Brief | An implementation of the Logit function |
Language | Python |
# 's
1def logit(x):
2 '''
3 Logit function, this can be a lambda
4 '''
5 return log(x / (1-x))
An implementation of the Logit function
Add a Comment