Home | History | Annotate | Download | only in Lib

Lines Matching refs:total

111     If optional argument ``start`` is given, it is added to the total.
154 total = partials[None]
155 assert not _isfinite(total)
159 total = sum(Fraction(n, d) for d, n in sorted(partials.items()))
160 return (T, total, count)
312 T, total, count = _sum(data)
314 return _convert(total/n, T)
356 T, total, count = _sum(1/x for x in _fail_neg(data, errmsg))
360 return _convert(n/total, T)
536 T, total, count = _sum((x-c)**2 for x in data)
541 total -= total2**2/len(data)
542 assert not total < 0, 'negative sum of square deviations: %f' % total
543 return (T, total)