class MoreMath::Sequence

def standard_deviation

Returns the standard deviation of the elements.
def standard_deviation
  @sample_deviation ||= Math.sqrt(variance)
end