如何在MATLAB中创建自定义绘图(图)?

时间:2016-02-22 12:43:38

标签: matlab

我想基于下面附带的类似值创建绘图。

Table

该图应如下所示。这里,每当权重为1时,索引值应为彩色或粗体字。

虽然我很擅长在MATLAB中绘制图形,但这看起来相当棘手。

如何做到这一点,一点点提示就可以达到目的。

enter image description here

1 个答案:

答案 0 :(得分:1)

看看这个。我知道我应该把它放在评论中,但还没有足够的声誉。

Coloring a matrix in matlab

编辑:我还复制粘贴[Coloring a matrix in matlab

中的代码

致@JohnCastle的信用

请考虑以下代码:

%# matrix
M = rand(11,11);
[r c] = size(M);

%# text location and labels
[xloc yloc] = meshgrid(1:c,1:r);
xloc = xloc(:); yloc = yloc(:);
str = strtrim(cellstr( num2str(M(:),'%.3g') ));
xticklabels = cellstr( num2str((1:c)','M%d') );
yticklabels = cellstr( num2str((1:r)','M%d') );

%# plot colored cells
mask = M>0.9;               %# or any other mask
h = imagesc(1:c, 1:r, ones(size(M)));
set(h, 'AlphaData',mask)
colormap(summer)            %# colormap([0 1 0])
set(gca, 'Box','on', 'XAxisLocation','top', 'YDir','reverse', ...
    'XLim',[0 c]+0.5, 'YLim',[0 r]+0.5, 'TickLength',[0 0], ...
    'XTick',1:c, 'YTick',1:r, ...
    'XTickLabel',xticklabels, 'YTickLabel',yticklabels, ...
    'LineWidth',2, 'Color','none', ...
    'FontWeight','bold', 'FontSize',8, 'DataAspectRatio',[1 1 1]);

%# plot grid
xv1 = repmat((2:c)-0.5, [2 1]); xv1(end+1,:) = NaN;
xv2 = repmat([0.5;c+0.5;NaN], [1 r-1]);
yv1 = repmat([0.5;r+0.5;NaN], [1 c-1]);
yv2 = repmat((2:r)-0.5, [2 1]); yv2(end+1,:) = NaN;
line([xv1(:);xv2(:)], [yv1(:);yv2(:)], 'Color','k', 'HandleVisibility','off')

%# plot text
text(xloc, yloc, str, 'FontSize',8, 'HorizontalAlignment','center');

screenshot

当你增加矩阵的大小时,文本最终会重叠......

修改

这是一种适用于更大矩阵的方法:我们使用不可见的图形,将其调整为足够大的尺寸,并使用较小的字体大小(我使用2):

M = rand(80,80);

figure('visible','off')
set(gcf, 'Units','Pixels', 'Position', [0, 0, 10000, 10000], ...
     'PaperPositionMode','Auto');
set(gca, 'units','normalized', 'position',[0.05 0.02 0.9 0.95])

%# ... 

然后在最后,导出到具有高分辨率的文件:

%# ...

print -dpng -r600 file.png

您可以看到output file here(10025x5962图片,645KB)