【发布时间】:2021-10-27 22:37:20
【问题描述】:
如何防止axis off去掉字幕? Nemely,我只想删除 x、y 轴,而不是字幕本身。
img = imread('cameraman.tif');
figure;
imagesc(img);
title('A');
subtitle('B');
【问题讨论】:
如何防止axis off去掉字幕? Nemely,我只想删除 x、y 轴,而不是字幕本身。
img = imread('cameraman.tif');
figure;
imagesc(img);
title('A');
subtitle('B');
【问题讨论】:
您可以执行以下操作:
img = imread('cameraman.tif');
figure;
imagesc(img);
title('A');
subtitle('B');
set(gca,'xtick',[]);
set(gca,'xticklabel',[]);
set(gca,'ytick',[]);
set(gca,'yticklabel',[]);
【讨论】: