示例#1
0
def residual(a, b, weight=None):
    '''Residual (sum of squared difference) of two inputs with optional weighting'''
    if weight is None:
        return _stats.residual(a, b)
    return _stats.weightedResidual(a, b, weight)
示例#2
0
def residual(a, b):
    '''Residual (sum of squared difference) of two inputs'''
    return _stats.residual(a, b)
示例#3
0
def residual(a, b):
    """Residual (sum of squared difference) of two inputs"""
    return _stats.residual(a, b)