当空矩阵时,MATLAB子图显示空白点

时间:2015-07-09 10:00:27

标签: matlab plot subplot

我想显示许多子图,如果矩阵是空的,它应该什么都不显示。 现在所有子图都得到默认图像,不再有轴和文本。如果我只是评论imagesc我遇到问题的地方,那么我会得到一个带有轴的丑陋的白色情节。有什么建议?我不想写整个代码,但这是我的最后一个图像代码:

      subplot(6,5,25)
      imagesc(image1{4,4})
       axis image;
      axis off;
      ylim=get(gca,'YLim');
      text(40,ylim(2),sprintf('S = %f  \nnumber in bin = %-10.3d',equal2(4,4), size(imagesS{4,4},3)'))
      colormap =[0:255;0:255;0:255]'/255;
       linkaxes();

0 个答案:

没有答案