gpt4 book ai didi

matlab - 如何调整所有子图的轴?

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

所以我有两个具有不同 caxis 值的子图。有没有办法使用 caxis([-2 2]) 以便它可以重新缩放所有子图的 caxis?每个图都有一个函数,我希望所有图都具有相同的坐标轴以便于比较。

enter image description here

最佳答案

假设您有包含子图的图形的句柄,您可以执行以下操作:

subplots = get(fig_handle,'Children'); % Get each subplot in the figure
for i=1:length(subplots) % for each subplot
caxis(subplots(i),[-2,2]); % set the clim
end

如果您没有图的句柄,只需使用 gcf 即可。

关于matlab - 如何调整所有子图的轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20110939/

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