gpt4 book ai didi

Matlab绘制黑色边框

转载 作者:行者123 更新时间:2023-12-02 05:02:48 25 4
gpt4 key购买 nike

我在一个循环中有三个不同的图:两个图有边框,但一个没有:

results

我希望它们都有黑色边框。我试图通过使用 box 来实现它但问题仍然存在。

hold on
figure(1),plot((delta1),Sref1,'*','Color',colors(i,:));title('Frequency [500MHz-1GHz]')
gcf=figure(1);
set(gcf,'Position', [0 0 290 245]);
hold off

hold on
figure(2),plot((delta2),Sref2,'*','Color',colors(i,:));title('Frequency [1GHz-1.5GHz]')
gcf=figure(2);
set(gcf,'Position', [0 0 290 245]);
hold off

hold on
figure(3),plot((delta3),Sref3,'*','Color',colors(i,:));title('Frequency [1.5GHz-2GHz]')
gcf=figure(3);
set(gcf,'Position', [0 0 290 245]);

hold off

最佳答案

只需在第一个 hold off 行之前添加 box on

这段代码对我有用(Matlab 2012b):

hold on
figure(1),plot(1:10);title('Frequency [500MHz-1GHz]')
gcf=figure(1);
set(gcf,'Position', [0 0 290 245]);
box on
hold off

hold on
figure(2),plot(1:10);title('Frequency [1GHz-1.5GHz]')
gcf=figure(2);
set(gcf,'Position', [0 0 290 245]);
hold off

hold on
figure(3),plot(1:10);title('Frequency [1.5GHz-2GHz]')
gcf=figure(3);
set(gcf,'Position', [0 0 290 245]);

hold off

关于Matlab绘制黑色边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16778947/

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