class MoreMath::Sequence

def sample_standard_deviation

Returns the sample standard deviation of the elements.
def sample_standard_deviation
  Math.sqrt(sample_variance)
end