-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEntropy.C
74 lines (54 loc) · 1.14 KB
/
Entropy.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
BOOM : Bioinformatics Object Oriented Modules
Copyright (C)2012 William H. Majoros ([email protected]).
This is OPEN SOURCE SOFTWARE governed by the Gnu General Public
License (GPL) version 3, as described at www.opensource.org.
*/
#include <iostream>
#include <math.h>
#include "Entropy.H"
using namespace std;
/*
double BOOM::Entropy::crossEntropy(BOOM::Vector<double> &P,
BOOM::Vector<double> &Q)
{
double H=0.0;
int i, n=P.size();
for(i=0 ; i<n ; ++i)
{
double p=P[i], q=Q[i];
H-=p*log(q);
}
return H;
}
double BOOM::Entropy::entropy(BOOM::Vector<double> &P)
{
double H=0.0;
int i, n=P.size();
for(i=0 ; i<n ; ++i)
{
double p=P[i];
H-=p*log(p);
}
return H;
}
double BOOM::Entropy::informationContent(BOOM::Vector<double> &V)
{
int n=V.size();
double Hmax=log(n)/log(2);
double H=entropy(V);
return (Hmax-H)/Hmax;
}
double BOOM::Entropy::relativeEntropy(BOOM::Vector<double> &P,
BOOM::Vector<double> &Q)
{
double H=0.0;
int i, n=P.size();
for(i=0 ; i<n ; ++i)
{
double p=P[i], q=Q[i];
H-=p*log(p/q);
}
return H;
}
*/