-
Notifications
You must be signed in to change notification settings - Fork 24
EntropyFunctions
The entropy functions provide the low-level tools for calculating Shannon entropy. They rely on TimeSeries.
Entropytools exist in the ENT:: namespace. To call them use:
ENT::Entropy(X);
double Entropy(const TS::intTimeSeries& X);<BR>
return the entropy of X
double MutualEntropy(const TS::intTimeSeries& X, const TS::intTimeSeries& Y);<BR>
return the mutual entropy of X and Y. Note that Mutual Entroy, Shared Entropy and Information are all the same thing
Entropy(X) + Entropy(Y)) - Entropy(TS::Join(X, Y)
double ConditionalEntropy(const TS::intTimeSeries& X, const TS::intTimeSeries& Y);<BR>
return the conditional entropy of X and Y; that is the entropy of X after the entropy explained by Y is removed
Entropy(X) - MutualEntropy(X, Y)
double ConditionalMutualEntropy(const TS::intTimeSeries& X, const TS::intTimeSeries& Y, const TS::intTimeSeries& Z);<BR>
return the conditional Mutual entropy; that is the information shared by X and Y after the entropy explained by Z is removed
Entropy(TS::Join(X, Z)) + Entropy(TS::Join(Y, Z)) - (Entropy(Z) + Entropy(TS::Join({ X, Y, Z })))
home
welcome
MABE Parameter Widget
Installation and quick start
license
citations
release notes
developer contributions
consistency testing
Using MABE
Using Settings Files
Output Files
Creating Graphs with python
MABE framework
Defining Update
Brains
Markov Brain
Neuron Gate
Wire Brain
Human Brain
ConstantValues Brain
CGP Brain
Genetic Programing Brain
Artificial Neural Networks
Brains Structure and Connectome
Genomes
Circular Genome
Multi Genome
Genome Handlers
Genome Value Conversions
Organisms
Groups
Archivists
popFileColumns
Optimizers
Lexicase Optimizer
Worlds
Berry World
ComplexiPhi World
MultiThreadTemplate World
Utilities
DataMap
Parameters
Parameters Name Space
Adding Parameters to Code
ParametersTable
MTree
sequence function
Population Loading
PythonTools
MBuild
MGraph
MQ
findRelatedness
generatePhylogeny
Information Theory Tools
Brain States and Life Times
TimeSeries
Entropy Functions
Smearing
Fragmentation
State to State
Brain Infomation Tools
ProcessingTools