class MoreMath::Sequence

def common_standard_deviation(other)

elements of this and +other+.
Returns an estimation of the common standard deviation of the
def common_standard_deviation(other)
  Math.sqrt(common_variance(other))
end