bellFunc function

double bellFunc(
  1. double x
)

Implementation

double bellFunc(double x) {
  return math.exp(-2 * x * x);
}