gpt4 book ai didi

matlab - 仅具有 ylabel 的子图

转载 作者:行者123 更新时间:2023-12-02 21:49:49 26 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/

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