I have a huge matrix. I'm talking 4^7x4^7. Each grid cell has a probability distribution associated with it. I would like to visualize this matrix by assigning a color to it based on the highest probability and a shade based on the magnitude of the probability. For example:
__ __
|(.8,.1,.1) (.6,.3,.1) (.4,.4,.2) (.2,.6,.2)|
|(.1,.6,.3) (.1,.2,.7) (.2,.3,.5) (.1,.4,.5)|
|(.4,.1,.5) (.3,.1,.6) (.6,.2,.2) (.7,.1,.2)|
|(.2,.5,.3) (.8,.1,.1) (.4,.3,.3) (.2,.6,.2)|
__ __
I would want cells (1,1), (1,2), (3,3), (3,4), (4,2), (4,3) to be red, with cell (1,1) being a darker shade than (4,3) Also, I would want (1,4), (2,1), (4,1), (4,4) to be blue, with (1,4) being darker than (4,1) And so on and so forth.
My actual implementation will need 8 separate colors. I was planning on doing this in Matlab, but if it would be easier in Excel I can use that.
Any ideas? Is this too crazy?
Thanks in advance!