Mutual Information is defined by the formula
I(X;Y) = H(X) - H(X|Y) = H(Y) - H(Y|X)
where X,Y are some column vectors.In my case,X is a continuous signal and Y is the discretized signal. size(X)=100 and number of discretizations for Y is say 10 and word length of Y is 5(say).Now,I know that first we have to find the joint probability,then the conditional probability and then I(X,Y).In this light,I have the following implementation issues
- While calculating the joint probabilities,would they be calculated till the size(x) or till word length of the discrretized signal Y?
- How to obtain a single numeric value of I and a plot of I
- How to find the channel capacity
Look at the last part of your equation: what is
H(Y|X)? It is the entropy ofYassuming we knowX… butYis just a discretization ofX! More specifically, if we knowX, then we precisely knowY, and so the entropy ofYgivenXis zero. This leaves you withDo any of your questions still need to be answered with this in mind?