class MoreMath::Sequence

def standard_deviation

Returns the standard deviation of the elements.
def standard_deviation
  Math.sqrt(variance)
end