Related to mutual information
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anamika
el 23 de En. de 2014
Comentada: ye song
el 1 de Mzo. de 2017
This is a function for mutual information
function I = MutualInformation(X,Y);
if (size(X,2) > 1) % More than one predictor?
% Axiom of information theory
I = JointEntropy(X) + Entropy(Y) - JointEntropy([X Y]);
else
% Axiom of information theory
I = Entropy(X) + Entropy(Y) - JointEntropy([X Y]);
end
But while running it is showing "not enough input arguements". I am not getting the problem. Can anyone please help me?
Respuesta aceptada
Walter Roberson
el 23 de En. de 2014
You need to go to the command line and call the routine, such as
MutualInformation(rand(5,7), rand(5, 14))
4 comentarios
Walter Roberson
el 24 de En. de 2014
The code calls upon the routine named "estpa", but you do not have code for that routine.
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!