logit-function
v0.0.1
Published
A JavaScript implementation of the logit function
Downloads
7
Readme
logit-function
A JavaScript implementation of the logit function
The logit function is the inverse of the sigmoid
Installation
$ npm install logit
Usage
var logit = require('logit-function');
logit(0.7) // 0.8472978603872034
See also
Thanks
To Steven Miller, the author of the sigmoid
npm package in which this one is heavily based on.