# File lib/more/facets/math/std.rb, line 22
  def self.stderr(array)
    return 0.0 if array.size < 2
    std(array) / sqrt(array.size)
  end