一个python的计算熵(entropy)的函数
            时间:2016-06-11 14:26:06  
            收藏:0  
            阅读:5081
        
        
        计算熵的函数:
# -*- coding: utf-8 -*- import math #the function to calculate entropy, you should use the probabilities as the parameters def entropy(*c): result=-1; if(len(c)>0): result=0; for x in c: result+=(-x)*math.log(x,2) return result; if (__name__=="__main__"): print(entropy(1/3,2/3));
            评论(0)