report.py 文件源码

python
阅读 32 收藏 0 点赞 0 评论 0

项目:cache-leak-detector 作者: falsecurity 项目源码 文件源码
def pearson(A, B):

    # Pearson
    coeff = 0.0
    try:
        coeff = scipy.stats.pearsonr(A, B)[0]
        if math.isnan(coeff):
            coeff = 0.0
    except:
        coeff = 0.0
    return (coeff)

##
# Calculate the hamming weight of all values
# within the given array.
#
#   @param A 1-D byte array
#   @return Hamming weight
#
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号