gpt4 book ai didi

matlab - 只有 ylabel 的子图

转载 作者:行者123 更新时间:2023-12-02 04:50:57 24 4
gpt4 key购买 nike

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

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

给我

enter image description here

不幸的是 ylabelaxis off 抑制了,如何抑制除 ylabel 之外的所有轴选项?

最佳答案

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

关闭轴后,只需添加:

set(get(gca,'YLabel'),'Visible','on')

关于matlab - 只有 ylabel 的子图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18873147/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com