Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我以八度进行绘图时,我可以左键单击绘图中的两个点,它将放大该部分。但是,当我在 Octave 中创建两个并排的图并尝试放大左侧图时,它会消失。这不是在 Octave 中导航子图的正确方法吗?
以下是展示该行为的命令示例。
x = [10:1:100]; subplot(1,2,1); plot(x); subplot(1,2,2); plot(x);