一个python的计算熵(entropy)的函数

计算熵的函数:

# -*- 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));

 

posted @ 2016-06-11 14:05  张不正  阅读(19459)  评论(0编辑  收藏  举报
返回顶部