absSigmoidFunc function

double absSigmoidFunc(
  1. double x
)

Implementation

double absSigmoidFunc(double x) {
  return x / (1 + x.abs());
}