bellDeriv function

double bellDeriv(
  1. double x
)

Implementation

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