[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: subplot wioth different plot
From: |
mmuetzel |
Subject: |
Re: subplot wioth different plot |
Date: |
Mon, 10 Dec 2018 09:39:40 -0600 (CST) |
You could use something like:
hf = figure;
hax1(1) = subplot(4, 3, 1, "parent", hf);
plot(hax1(1), 1:2);
hax1(2) = subplot(4, 3, 4, "parent", hf);
plot(hax1(2), 1:2);
hax2 = subplot(2, 3, 2, "parent", hf);
plot(hax2, 1:2);
hax4 = subplot(2, 3, 4, "parent", hf);
plot(hax4, 1:2);
I hope you can continue from there.
Markus
--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html