コード例 #1
0
ファイル: jyscisoft.py プロジェクト: thiyagavit/passerelle
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)