Function Description ******************** Name: SIGMOID Function: f(x) = a + b / (1 + exp(-(x-c)/d)) Parameters: a b c d Notes ***** This function will converges fairly easily with reasonable starting values for the parameters. C-code for the function *********************** answer = a + b / (1 + exp(-(x - c) / d));