2

我正在绘制一些水平堆叠的 MEG 时间序列。现在我不想显示任何轴,但我确实想在左侧打印每个通道号。到目前为止,我已经尝试过:

figure;
for i=1:10
    subplot(10,1,i)
    plot(1:5000,PDdata{1,1}.data(:,i)) % data to be plotted
    axis off
    ylabel(sprintf('%d',i))
end

给我

在此处输入图像描述

不幸的ylabel是 被 抑制了axis off,我怎么能抑制除了ylabel?

4

2 回答 2

3

您可以ylabel通过将其可见性设置为 来打开背面on

关闭轴后,只需添加:

set(get(gca,'YLabel'),'Visible','on')
于 2013-09-18T13:40:10.203 回答
2

使用该text功能。

for n=1:10
   subplot(10,1,n);
   plot(1:10,1:10);   
   axis off;
   text(0,0,num2str(n));
end

使用xy可以调整文本的位置。

于 2013-09-18T13:36:18.300 回答