I am currently encoding a fuzzy logic library in java. I found equations for all standard functions - Grade, inverseGrade, Triangle, Trapezoid, Gaussian. However, I cannot find the inverse of the sigmoid / logistic function.
As I wrote the logistic function, java:
public double logistic(double x){
return (1/(1+(Math.exp(-x)));
}
But I can neither find nor find the inverse. My algebraic / calculus abilities are quite limited, so I could not handle the inverse function.
Any hints or pointers would be of great help.
thank
source
share