|
There's no existing function that will do all of the heatmap (and displayed info) that you want, but all of the functionality exists to write your own.
imagesc is a good place to start.
Something like
imagesc(TotalReturns)
colorbar
for idx = 1:size(Tickers,1)
for jdx = 1:size(Tickers,2)
text(jdx,idx,Tickers{idx,jdx},'HorizontalAlignment','Center');
end
end
will get the initial data plotted.
From there you need to read the doc related to Handle Graphics to understand how to further manipulate the image to get it to look like you want.
Phil.
|