gaussian static method

num gaussian(
  1. num value
)

Implementation

static num gaussian(num value) {
  return math.exp(-math.pow(value, 2));
}