Plotting time-course of matrix entries

2 views (last 30 days)
I have a matrix with real-valued, nonnegative entries. For entry (i,j), I wish to plot a filled circle at the point (i,j) whose color intensity is determined by the magnitude of M(i,j). So for example, if M(2,3) > M(4,8), then a darker dot would appear at (2,3) than at (4,8). I want to draw filled circles as opposed to colored rectangles as one would do using pcolor
EXTRA CREDIT: If the entries of M also change with time, i.e. each entry takes the form M(i,j,t), how could I go about creating an animation that shows the time-course of the various magnitudes. For example, if M(2,3,t) is an increasing function of t, I would want the color intensity of the filled dot at (2,3) to increase.
  1 Comment
Paul Fishback
Paul Fishback on 16 Oct 2013
Okay, I've been able to achieve the first two of my goals by use of scatter plot, with color intensities determined by the matrix entries. So the EXTRA CREDIT question is still open.

Sign in to comment.

Accepted Answer

Jonathan LeSage
Jonathan LeSage on 16 Oct 2013
Edited: Jonathan LeSage on 16 Oct 2013
Extra credit time! Depending on how you want to ultimately display your results, you have quite a few options. For a quick and dirty approach to plotting your data over time, you can just sequentially update a plot using the imagesc function to depict color intensity of your matrix.
Here is some quick code which illustrates that method:
% Generate a 2x2x10 matrix (x,y,t)
N = 10;
x = reshape(1:N,1,1,10);
dataMat = [rand(1,1,N), 20-x;
x+10, rand(1,1,N)];
colorLimits = [min(dataMat(:)) max(dataMat(:))];
% Step through and plot along the t-axis
for i = 1:N,
imagesc(dataMat(:,:,i),colorLimits);
colorbar
pause(0.5); % Half a second pause between frames
end
To actually animate these results, you can refer to the discussion from another answers question from yesterday:
Finally, as another possibility for displaying your data, you should check out the sliceomatic function that is available on the File Exchange:
Hope this helps to get you started!

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!