用变量绘制matlab xlabel

时间:2015-07-02 08:36:02

标签: matlab plot

我试图给我的图像没有轴一个带有变量的xlabel。有诀窍吗?

         figure(678)
         subplot(3,3,1)
         imagesc(image{1,1})
         title(' Image of all images')
         axis image;
         axis off;
         str = sprintf('SSIM = %f, number of bins = %f',variabel1, size(images{1,1},3));
         xlabel('str');
         subplot(3,3,2)
         ...

1)有一个简单的方法吗?

2)然后我想知道我是否可以轻松地制作出许多不同的子图?我想有10 * 10张图片,而不仅仅是3 * 3。

3)我可以改变图像之间的大小吗?我知道我可以在编译后手动完成,但随后图像的大小也会改变。

0 个答案:

没有答案