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.
オクターブでプロットするとき、プロット内の 2 点を左クリックすると、そのセクションが拡大されます。しかし、Octave で 2 つの横に並べたプロットを作成し、ズームインしようとすると、左側のプロットが消えます。これは、Octave でサブプロットをナビゲートする正しい方法ではありませんか?
以下は、動作を示すコマンドの例です。
x = [10:1:100]; subplot(1,2,1); plot(x); subplot(1,2,2); plot(x);