std method

double std()
override

Implementation

double std() {
  final double diff = max - min;
  return math.sqrt(diff * diff / 12);
}